Minor changes to site layout
This commit is contained in:
parent
424a5abcd9
commit
b4b0381703
4 changed files with 17 additions and 16 deletions
|
@ -1896,8 +1896,9 @@ button,
|
|||
width: 100%; }
|
||||
#main > .inner {
|
||||
padding: 0 6em 0.1em 6em ;
|
||||
margin: 0 auto;
|
||||
max-width: 110em; }
|
||||
margin-top: 0;
|
||||
margin-left: 1em;
|
||||
max-width: 1100px; }
|
||||
#main > .inner > section {
|
||||
padding: 2em 0 4em 0 ;
|
||||
border-top: solid 2px rgba(210, 215, 217, 0.75); }
|
||||
|
|
|
@ -98,14 +98,13 @@
|
|||
{% include 'include/sidebar.html' %}
|
||||
</div>
|
||||
|
||||
|
||||
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/jquery.min.js"></script>
|
||||
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/browser.min.js"></script>
|
||||
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/breakpoints.min.js"></script>
|
||||
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/util.js"></script>
|
||||
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/main.js"></script>
|
||||
|
||||
{% if IMAGETRACKINGCODE %}
|
||||
{% if IMAGETRACKINGCODE is sameas True %}
|
||||
{{ IMAGETRACKINGCODE }}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<article>
|
||||
|
||||
{% if article.photo_image %}
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="image"><img src="{{ SITEURL }}/{{ article.photo_image[1] }}" style="max-width: 100%; display: inline; float: center;" /></a>
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="image"><img src="{{ SITEURL }}/{{ article.photo_image[2] }}" style="max-width: 100%; display: inline; float: center;" /></a>
|
||||
{% endif %}
|
||||
{% if (article.category != MICROBLOG ) %}
|
||||
<header>
|
||||
|
|
|
@ -116,26 +116,27 @@
|
|||
<h2>Webring</h2>
|
||||
{% for article in webring_articles %}
|
||||
<p><a href="{{ article.link }}">{{ article.title }}</a></p>
|
||||
<p>{{ article.date|strftime('%d %B %Y') }}<!-- - {{ article.summary}}--></p>
|
||||
<p>{{ article.date|strftime('%d %B %Y') }}<!-- {{ article.summary}}--></p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if FEDIRING sameas True %}
|
||||
{% if FEDIRING is sameas True %}
|
||||
<section>
|
||||
<div class="webring">
|
||||
<h2>Fediring</h2>
|
||||
<h2>Webring - Fediverse</h2>
|
||||
<p>
|
||||
<a href="https://fediring.net/previous?host={{ FEDIRINGURL }}"">- </a>
|
||||
{% if FEDIRINGRANDOM sameas True %}
|
||||
<a href="https://fediring.net/previous?host={{ FEDIRINGURL }}">(PREV)</a>
|
||||
<a href="https://fediring.net/">Fediring</a>
|
||||
{% endif %}
|
||||
<a href="https://fediring.net/next?host={{ FEDIRINGURL }}">→</a>
|
||||
<a href="https://fediring.net/next?host={{ FEDIRINGURL }}">(NEXT)</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{% if FEDIRINGRANDOM is sameas True %}
|
||||
<p>
|
||||
<a href="https://fediring.net/random">Fediring Random</a>
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue