Compare commits
No commits in common. "c4f6187263c5840b76ad005cde12d0752eb6adf1" and "36a80acc26191966aff55fcbd13a6eb1f9307bce" have entirely different histories.
c4f6187263
...
36a80acc26
3 changed files with 10 additions and 6 deletions
|
|
@ -14,6 +14,7 @@ p, li {
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
|
font-weight: 375;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
|
@ -912,7 +913,7 @@ body {
|
||||||
sans-serif,
|
sans-serif,
|
||||||
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
font-weight: 375;
|
font-weight: 400;
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1740,6 +1741,7 @@ Court Case Page Styles (MT/2025)
|
||||||
.case-content p {
|
.case-content p {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
line-height: 1.42;
|
line-height: 1.42;
|
||||||
|
font-weight: 375;
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
{% block category %}blog{% endblock %}
|
{% block category %}blog{% endblock %}
|
||||||
|
|
||||||
{% block head %}
|
{% 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 %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block outercontent %}
|
{% block outercontent %}
|
||||||
|
|
@ -24,14 +24,16 @@
|
||||||
<h2>Blogs by Tag</h2>
|
<h2>Blogs by Tag</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{% for tag in all_tags %}
|
{% for tag in all_tags %}
|
||||||
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a></li>
|
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>
|
||||||
|
(<a href="/feeds/blog/?tag={{ tag.slug }}">rss</a>)</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2>Blogs by Author</h2>
|
<h2>Blogs by Author</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{% for author in all_authors %}
|
{% for author in all_authors %}
|
||||||
<li><a href="/blog/?author={{ author.username }}">{{ author.formal_name }}</a></li>
|
<li><a href="/blog/?author={{ author.username }}">{{ author.formal_name }}</a>
|
||||||
|
(<a href="/feeds/blog/?author={{ author.username }}">rss</a>)</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
||||||
</div>
|
</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 %} — {{ 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 %} — {{ author.formal_name }}{% endif %}</h2>
|
||||||
|
|
||||||
{% if authors or tags %}
|
{% if authors or tags %}
|
||||||
<p>Displaying posts
|
<p>Displaying posts
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue