Skip to content

Commit 0136f77

Browse files
committed
Rename posts to logs, update homepage text, switch to blue
1 parent 7b94836 commit 0136f77

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ title: "PyTorch DevLog"
44

55
## About
66

7-
PyTorch developers regularly produce deep technical content about design decisions, performance analyses, and feature implementations. This repo makes that knowledge **permanent, searchable, machine-indexable, and available to OSS users and AI agents** — so it doesn't get buried in chat threads or ephemeral posts.
7+
A place for PyTorch developers to share what they're building — new tools, ongoing projects, design decisions, performance wins, and technical deep dives. Written by the people doing the work, for anyone who wants to follow along.

layouts/_default/list.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h1>{{ .Site.Title }}</h1>
55
{{ .Content }}
66
</div>
77

8-
<h2>Most Recent 10 Posts</h2>
8+
<h2>Most Recent 10 Logs</h2>
99
{{ $i := 0 }}
1010
{{ range first 10 .Site.RegularPages.ByDate.Reverse }}
1111
{{ $i = add $i 1 }}
@@ -19,19 +19,19 @@ <h3>{{ $i }}. <a href="{{ .Permalink }}">{{ .Title }}</a> <span class="tag">{{ .
1919
</div>
2020
{{ end }}
2121

22-
<h2>Topics <span class="meta">— click on a topic to see all related posts</span></h2>
22+
<h2>Topics <span class="meta">— click on a topic to see all related blogs</span></h2>
2323
<ul class="post-list">
2424
{{ range .Site.Sections }}
2525
<li>
2626
<a href="{{ .Permalink }}">{{ .Title }}</a>
2727
{{ with .Params.description }}<span class="date"> — {{ . }}</span>{{ end }}
28-
<span class="date"> · {{ len .Pages }} posts</span>
28+
<span class="date"> · {{ len .Pages }} blogs</span>
2929
</li>
3030
{{ end }}
3131
</ul>
3232
{{ else }}
3333
<nav class="breadcrumb">
34-
<a href="{{ .Site.BaseURL }}">All Posts</a>
34+
<a href="{{ .Site.BaseURL }}">All Logs</a>
3535
</nav>
3636
<h1>{{ .Title }}</h1>
3737
{{ with .Params.description }}<p class="meta">{{ . }}</p>{{ end }}
@@ -48,7 +48,7 @@ <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
4848
</div>
4949
{{ end }}
5050

51-
<h2>All Posts</h2>
51+
<h2>All Logs</h2>
5252
<ul class="post-list">
5353
{{ range .Pages.ByDate.Reverse }}
5454
<li>

0 commit comments

Comments
 (0)