-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7627141
commit 1c8e6d7
Showing
4 changed files
with
51 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,27 @@ | ||
{% extends 'layouts/base.html' %} | ||
|
||
{% load static %} | ||
{% block content %} | ||
<main class="spread v-full center landing-hero"> | ||
{% block main %}{% endblock %} | ||
</main> | ||
<body hx class="container"> | ||
<header class="header spread subgrid"> | ||
<span class="cols-3"> | ||
<a href="{% url 'index' %}"> | ||
<img width="200" src="{% static 'feed/img/logo.svg' %}"/> | ||
</a> | ||
</span> | ||
{% if user.is_authenticated %} | ||
{% include 'blocks/header/authenticated.html' %} | ||
{% else %} | ||
{% include 'blocks/header/anonym.html' %} | ||
{% endif %} | ||
</header> | ||
<section class="spread center landing-hero"> | ||
{% block main %}{% endblock %} | ||
</section> | ||
<footer class="footer spread"> | ||
<small class="spread"> | ||
© {% now "Y" %} | thewalter.app by | ||
<a href="https://www.linkedin.com/in/mivanov24/" target="_blank" class="link medium">Mikhail Ivanov</a> | ||
</small> | ||
</footer> | ||
</body> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters