diff options
author | Bradley Taunt <bt@btxx.org> | 2024-06-05 11:05:15 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-06-05 11:05:15 -0400 |
commit | c430a8b3880b3c303c9254b964671151a4617376 (patch) | |
tree | df9dacd08bcc93a3db9fc131db90f5f9ff798645 | |
parent | e85eb98480d0c7af950859e95819901a20923fe7 (diff) |
Further tweaks, improvements, content changes
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | _layouts/post.html | 14 | ||||
-rw-r--r-- | _sass/minima/custom-styles.scss | 7 | ||||
-rw-r--r-- | index.md | 2 | ||||
-rw-r--r-- | projects.md | 12 |
5 files changed, 24 insertions, 13 deletions
diff --git a/_config.yml b/_config.yml index 98f8fa6..0f8fee6 100644 --- a/_config.yml +++ b/_config.yml @@ -14,7 +14,7 @@ host: 0.0.0.0 minima: social_links: - { platform: rss, user_url: "/feed.xml" } - - { platform: mastodon, user_url: "https://fosstodon.org/@tdarb" } + - { platform: mastodon, user_url: "https://mastodon.bsd.cafe/@bt" } - { platform: sourcehut, user_url: "https://sr.ht/~bt/" } - { platform: git, user_url: "https://git.btxx.org" } diff --git a/_layouts/post.html b/_layouts/post.html index dc71866..2eaedf4 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -30,9 +30,13 @@ layout: base {{ content }} </div> - {%- if site.disqus.shortname -%} - {%- include disqus_comments.html -%} - {%- endif -%} - - <a class="u-url" href="{{ page.url | relative_url }}" hidden></a> + <div> + <hr style="margin:40px auto;width:65%;"> + {% if page.previous.url %} + <a class="prev" href="{{page.previous.url}}">« {{page.previous.title}}</a> + {% endif %} + {% if page.next.url %} + <a class="next" href="{{page.next.url}}">{{page.next.title}} »</a> + {% endif %} + </div> </article> diff --git a/_sass/minima/custom-styles.scss b/_sass/minima/custom-styles.scss index 044b842..96a5cdb 100644 --- a/_sass/minima/custom-styles.scss +++ b/_sass/minima/custom-styles.scss @@ -15,6 +15,13 @@ } } } +a { + &.prev { float: left; } + &.next { float: right; } + &.prev,&.next { + margin-top: 10px; + } +} .footnotes { font-size: 90%; } @@ -4,7 +4,7 @@ layout: home # Designer, developer, hardware tinkerer, open source advocate, consumer of dark roast coffee, and writer of very long sentences. -Hi, my name is Bradley Taunt. I'm a designer/developer hybrid helping software companies improve their user experience and ship more performant products. Currently making search engine results data more accessible at [SerpApi](https://serpapi.com). +Hi, my name is Bradley Taunt. I'm a designer/developer hybrid helping software companies improve their user experience and ship more performant products. I also actively maintain several [open source projects](/projects). diff --git a/projects.md b/projects.md index 5c7c19e..f7f88cc 100644 --- a/projects.md +++ b/projects.md @@ -11,14 +11,14 @@ All my open source projects are hosted through git on both: [sourcehut.org](http ## Active Projects * [barf](https://barf.btxx.org): Minimal blog engine in a tiny shell script * [jsfree](https://jsfree.org): Collection of web services that work without JavaScript -* [ssgit](https://git.btxx.org/ssgit): Static site git page generator +* [ssgit](https://git.btxx.org/ssgit/about): Static site git page generator * [Vanilla CSS](https://vanillacss.com): A minimal baseline stylesheet for any web project * [Web Audit](https://audit.btxx.org): Detailed checklist audit for developing websites * [Normform](https://normform.netlify.app): Minimal CSS form plugin (6KB) * [23 Tales](https://23tales.netlify.app): Online collection of works by Beatrix Potter -* [Shinobi](https://git.btxx.org/shinobi): Text-based, RSS focused blogging "system" -* [pblog](https://git.btxx.org/pblog): Pandoc static blog generator -* [Light Speed](https://git.btxx.org/lightspeed): Jekyll theme with a perfect Lighthouse score +* [Shinobi](https://git.btxx.org/shinobi/about): Text-based, RSS focused blogging "system" +* [pblog](https://git.btxx.org/pblog/about): Pandoc static blog generator +* [Light Speed](https://git.btxx.org/lightspeed/about): Jekyll theme with a perfect Lighthouse score ## Clubs * [1MB Club](https://1mb.club): A collection of web pages weighing less than 1 megabyte @@ -26,8 +26,8 @@ All my open source projects are hosted through git on both: [sourcehut.org](http * [XHTML Club](https://xhtml.club) A collection of HTML-focused websites ## Suckless Installers / Setups -* [Open Suck](https://git.btxx.org/open-suck): OpenBSD desktop based on the suckless philosophy -* [Alpine Suck](https://git.btxx.org/alpine-suck): Alpine Linux desktop based on the suckless philosophy +* [Open Suck](https://git.btxx.org/open-suck/about): OpenBSD desktop based on the suckless philosophy +* [Alpine Suck](https://git.btxx.org/alpine-suck/about): Alpine Linux desktop based on the suckless philosophy ## Experiments * [Blog Anonymously](https://anon.btxx.org): A basic starting point for those wishing to blog privately |