Style changes

This commit is contained in:
Yusur 2023-05-18 08:47:06 +02:00
parent ba3ed04b44
commit d53677ea66
25 changed files with 389 additions and 371 deletions

View file

@ -10,17 +10,20 @@
<h1 id="firstHeading">{{ p.title }}</h1>
<div class="preview-subtitle">{{ T('backlinks') }}</div>
{% if backlinks %}
<ul>
{% for op in backlinks %}
<li><a href="{{ op.get_url() }}">
{{ op.title }} (<strong>#{{ op.id }}</strong>)
</a></li>
{% endfor %}
</ul>
{% else %}
<p class="placeholder">{{ T("backlinks-empty") }}</p>
{% endif %}
<div class="inner-content">
{% if backlinks %}
<ul>
{% for op in backlinks %}
<li><a href="{{ op.get_url() }}">
{{ op.title }} (<strong>#{{ op.id }}</strong>)
</a></li>
{% endfor %}
</ul>
{% else %}
<p class="placeholder">{{ T("backlinks-empty") }}</p>
{% endif %}
</div>
<p>{{ T("back-to") }} <a href="{{ p.get_url() }}">{{ p.title }}</a>.</p>
{% endblock %}