~dricottone/blog

blog/layouts/index.html -rw-r--r-- 1.2 KiB
eb40f8f6Dominic Ricottone RSS feeds 17 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{{ define "main" }}

<div id="content">
  <h1>{{ .Title }}</h1>

  {{ .Content }}
</div>

<hr class="content-width" />

<div id="blog-content">
  <p>These are my three most recent blog posts. More posts can be found on the 'Blog' tab.<p>

  <ul id="blog-list">
    {{ with .Site.GetPage "/posts" }}
    {{ range first 3 .Pages }}
    <li>
      <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>

      <p><i>posted on {{ .Date.Format "2006-01-02" }}</i></p>

      <p>{{ .Summary }}</p>
      {{ if .Truncated }}<p><a href="{{ .Permalink }}">Read Moreā€¦</a></p>{{ end }}
    </li>
    {{ end }}
    {{ end }}
  </ul>
</div>

<hr class="content-width" />

<div id="bsky-content">
  <p>I occasionally post on <a href="https://bsky.app/profile/dricottone.bsky.social">Bluesky</a>, mostly about concerts and music.</p>

  {{ partial "bsky.html" . }}
</div>

<hr class="content-width" />

<div id="lastfm-content">
  <p>Here's my most listened to music from the last 30 days. See more on <a href="https://www.last.fm/user/al__dente">LastFM</a></p>

  {{ partial "lastfm.html" . }}
</div>

<hr class="content-width" />

<div id="openring-content">
  <p>Articles from the internet that I've been reading</p>

  {{ partial "openring.html" . }}
</div>

{{ end }}