diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-04-23 20:30:23 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-04-23 20:30:23 -0600 |
commit | 6a4f98b58e5b41c25c1749416a600154e603bb99 (patch) | |
tree | 7ee8b36a5e2e33cc26ba96d43a5842963c211b66 /cmd | |
parent | bde9fe8d951bab7c6dd14dbcba58a2c4d463d046 (diff) |
imworkingon: Improve navigation on mobile
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/generate/imworkingon.html.tmpl | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/cmd/generate/imworkingon.html.tmpl b/cmd/generate/imworkingon.html.tmpl index a2a43a8..ff35f2c 100644 --- a/cmd/generate/imworkingon.html.tmpl +++ b/cmd/generate/imworkingon.html.tmpl @@ -12,12 +12,20 @@ <section id="intro"> <h1>Luke is working on<br/><small>improving the GNU/Linux ecosystem</small></h1> - <p>If you find this work valuable, please - consider <a class="em" href="../sponsor/">sponsoring me</a>.</p> + <nav> + <p>This page provides several views into what I'm doing to improve the ecosystem:</p> + <ol> + <li><a href="#tags">Top themes</a></li> + <li><a href="#contribs-pending">In-progress work</a></li> + <li><a href="#contribs-completed">Completed work</a></li> + <li><a href="#standups">Daily statuses</a></li> + </ol> + </nav> + <p>If you find this work valuable, please consider <a class="em" href="../sponsor/">sponsoring me</a>.</p> </section> <section id="tags"> - <h2>Top themes</h2> + <h2>Top themes <a href="#tags">🔗</a></h2> {{- range $tagName, $tagInfo := .Tags }} <article class="tag" id="tag-{{ $tagName }}"> <h2><a href="#tag-{{ $tagName }}">#{{ $tagName }}</a> : {{ $tagInfo.PrettyName }}</h2> @@ -27,7 +35,7 @@ </section> <section id="contribs-pending"> - <h2>In-progress work</h2> + <h2>In-progress work <a href="#contribs-pending">🔗</a></h2> {{- range $contrib := .Contribs }} {{- if or (eq $contrib.StatusClass "merged") (eq $contrib.StatusClass "released") }}{{ continue }}{{ end }} {{ $upstream := $contrib | getUpstream }} @@ -55,7 +63,7 @@ {{- end }} </section> <section id="contribs-completed"> - <h2>Completed work</h2> + <h2>Completed work <a href="#contribs-completed">🔗</a></h2> {{- range $contrib := .Contribs }} {{- if or (eq $contrib.StatusClass "merged") (eq $contrib.StatusClass "released") | not }}{{ continue }}{{ end }} {{ $upstream := $contrib | getUpstream }} @@ -83,7 +91,7 @@ {{- end }} </section> <section id="standups"> - <h2>Daily statuses</h2> + <h2>Daily statuses <a href="#standups">🔗</a></h2> <p>Posted daily on <a href="https://fosstodon.org/@lukeshu">Mastodon</a> with the #DailyStandup tag.</p> <details><summary>Calendar view</summary> |