Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion site/blog/build_blog.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,10 @@ def render_index(posts: list[Entry], md) -> str:
<h1 class="forge-h2" style="font-size:44px;">Notes from the language.</h1>
<p class="forge-p" style="max-width:640px;">
Design rationale, refactor stories, and the occasional shipping
announcement. Newest first. <a href="feed.xml">RSS</a>.
announcement. Newest first.
</p>
<p style="max-width:640px; margin:8px 0 0; font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:1.4px;">
<a href="feed.xml" style="color:var(--amber);">RSS</a>
</p>
<div class="forge-blog-list">
{chr(10).join(items)}
Expand Down Expand Up @@ -405,6 +408,7 @@ def render_atom_feed(posts: list[Entry], site_url: str) -> str:
<link href="{site_url}/blog/"/>
<updated>{updated}T00:00:00Z</updated>
<id>{site_url}/blog/</id>
<author><name>Boris Batkin</name></author>
{chr(10).join(entries)}
</feed>
"""
Expand Down
1 change: 1 addition & 0 deletions site/downloads.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="description" content="Daslang releases, repository, blog, and ecosystem links." />

<link rel="icon" type="image/svg+xml" href="files/forge-favicon.svg" />
<link rel="alternate" type="application/atom+xml" title="Daslang blog" href="blog/feed.xml" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=JetBrains+Mono:wght@400;500;600;700&display=swap" />
Expand Down
1 change: 1 addition & 0 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<link rel="icon" type="image/svg+xml" href="files/forge-favicon.svg" />
<link rel="alternate icon" type="image/x-icon" href="doc/_static/daslang.ico" />
<link rel="alternate" type="application/atom+xml" title="Daslang blog" href="blog/feed.xml" />

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
Expand Down
Loading