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

3
templates/base.html

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

4
templates/page.html

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

Loading…
Cancel
Save