Create a super-simple homepage
This commit is contained in:
parent
8bd2faa8a9
commit
55abf1780e
9 changed files with 75 additions and 1 deletions
10
home/templates/home/index.html
Normal file
10
home/templates/home/index.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% extends 'lemoncurry/layout.html' %}
|
||||
{% block main %}
|
||||
<aside class="author">
|
||||
<article class="h-card card p-author">
|
||||
<h4 class="card-title p-name">
|
||||
<span class="p-given-name">{{ user.first_name }}</span> <span class="p-family-name">{{ user.last_name }}</span>
|
||||
</h4>
|
||||
</article>
|
||||
</aside>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue