Compare commits
2 commits
36a80acc26
...
c4f6187263
| Author | SHA1 | Date | |
|---|---|---|---|
| c4f6187263 | |||
| 85822cfd9f |
3 changed files with 6 additions and 10 deletions
|
|
@ -14,7 +14,6 @@ p, li {
|
|||
|
||||
p {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 375;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
|
|
@ -913,7 +912,7 @@ body {
|
|||
sans-serif,
|
||||
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-size: 1.125rem;
|
||||
font-weight: 400;
|
||||
font-weight: 375;
|
||||
color: var(--black);
|
||||
}
|
||||
|
||||
|
|
@ -1741,7 +1740,6 @@ Court Case Page Styles (MT/2025)
|
|||
.case-content p {
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.42;
|
||||
font-weight: 375;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
|
|
@ -1858,4 +1856,4 @@ Court Case Page Styles (MT/2025)
|
|||
.toggle-section .summary-title {
|
||||
display: block;
|
||||
/* No extra indent needed, padding on summary handles it */
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
{% block category %}blog{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/{% if query_string %}?{{ query_string }}{% endif %}" />
|
||||
{% endblock %}
|
||||
|
||||
{% block outercontent %}
|
||||
|
|
@ -24,16 +24,14 @@
|
|||
<h2>Blogs by Tag</h2>
|
||||
<ul>
|
||||
{% for tag in all_tags %}
|
||||
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>
|
||||
(<a href="/feeds/blog/?tag={{ tag.slug }}">rss</a>)</li>
|
||||
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h2>Blogs by Author</h2>
|
||||
<ul>
|
||||
{% for author in all_authors %}
|
||||
<li><a href="/blog/?author={{ author.username }}">{{ author.formal_name }}</a>
|
||||
(<a href="/feeds/blog/?author={{ author.username }}">rss</a>)</li>
|
||||
<li><a href="/blog/?author={{ author.username }}">{{ author.formal_name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
||||
</div>
|
||||
|
||||
<h2><a href="/feeds/blog/" class="feedlink"><img src="{% static 'img/feed-icon-14x14.png' %}" alt="[RSS]"/></a> Conservancy Blog{% if author %} — {{ author.formal_name }}{% endif %}</h2>
|
||||
<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 %} — {{ author.formal_name }}{% endif %}</h2>
|
||||
|
||||
{% if authors or tags %}
|
||||
<p>Displaying posts
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue