Browse Source

i forgor what i changed but im sure its significant somehow

main
xenua 2 years ago
parent
commit
3d2425fda5
  1. 9
      sass/style.sass
  2. 3
      templates/base.html
  3. 4
      templates/page.html

9
sass/style.sass

@ -167,7 +167,7 @@ body @@ -167,7 +167,7 @@ body
@media screen and (max-width: 980px)
body
height: revert
// height: revert
display: flex
flex-flow: column nowrap
padding-right: 0
@ -175,11 +175,16 @@ body @@ -175,11 +175,16 @@ body
aside
overflow-y: revert
border-bottom: none
flex-shrink: 0
article
margin: 0
overflow-y: revert
flex-grow: 1
footer
flex-shrink: 0
@media screen and (max-width: 480)
body
font-size: 12pt

3
templates/base.html

@ -28,7 +28,4 @@ @@ -28,7 +28,4 @@
<footer>{% block footer %}{% endblock %}</footer>
</body>
{% block js %}
<script src="{{ get_url(path='script.js', trailing_slash=false) | safe }}"></script>
{% endblock %}
</html>

4
templates/page.html

@ -48,7 +48,11 @@ @@ -48,7 +48,11 @@
{% block footer %}
<span>
{% if page.date %}
{{ page.date | date(format='%Y') }}
{% else %}
{{ now() | date(format='%Y') }}
{% endif %}
{% if page.extra.author %}
{{ page.extra.author }}
{% elif config.extra.author %}

Loading…
Cancel
Save