Compare commits

...

2 commits

Author SHA1 Message Date
9254befd7e
Be clearer that the Blog RSS feed relates to a subset
Rather than modifying the top-level RSS link when viewing by tag, I've added an
extra link next to the "Displaying posts tagged ..." link.
2025-07-24 14:31:24 +10:00
aa02f00aba
Fix previous Vizio changes on mobile
Was overflowing on a small screen.
2025-07-24 14:31:24 +10:00
4 changed files with 4 additions and 5 deletions

View file

@ -1651,7 +1651,6 @@ Court Case Page Styles (MT/2025)
@media screen and (max-width: 66.999em) {
.case-info {
text-align: center;
padding: 50px 20px 0;
}
}

View file

@ -3,7 +3,7 @@
{% block category %}blog{% endblock %}
{% block head %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/{% if query_string %}?{{ query_string }}{% endif %}" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/" />
{% endblock %}
{% block outercontent %}

View file

@ -13,7 +13,7 @@
<section class="case-header">
<div class="case-info flex">
<div class="case-info w-50-l" style="padding: 100px">
<div class="case-info w-50-l ph2 pv4 ph5-ns pv5-ns">
<h4>Court Case</h4>
{% block case-info %}{% endblock %}
</div>

View file

@ -8,13 +8,13 @@
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
</div>
<h2><a href="/feeds/blog/{% if query_string %}?{{ query_string }}{% endif %}" class="feedlink"><img src="{% static 'img/feed-icon-14x14.png' %}" alt="[RSS]"/></a> Conservancy Blog{% if author %} &mdash; {{ author.formal_name }}{% endif %}</h2>
<h2><a href="/feeds/blog/" class="feedlink"><img src="{% static 'img/feed-icon-14x14.png' %}" alt="[RSS]"/></a> Conservancy Blog{% if author %} &mdash; {{ author.formal_name }}{% endif %}</h2>
{% if authors or tags %}
<p>Displaying posts
{% if authors %}by {% for author in authors %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}<a href="{{ author.biography_url }}">{{ author.formal_name }}</a>{% if forloop.revcounter == 2 %} and {% endif %}{% endfor %}{% endif %}
{% if tags %}tagged {% for tag in tags %}{% if not forloop.last %}{% if not forloop.first %}, {% endif %}{% endif %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if forloop.revcounter == 2 %} or {% endif %}{% endfor %}{% endif %}
</p>
<a href="/feeds/blog/{% if query_string %}?{{ query_string }}{% endif %}"><img src="{% static 'img/feed-icon-14x14.png' %}" alt="[RSS]"/></a></p>
{% endif %}
{% for entry in blog_entries %}