diff --git a/lib/Config.rakumod b/lib/Config.rakumod index a7bdc67..aa178de 100644 --- a/lib/Config.rakumod +++ b/lib/Config.rakumod @@ -5,6 +5,7 @@ use HTML::Functional; use Render::Util; use Render::Head; use Render::Post; +use Render::Foot; use DB::BlogMeta; use DB::Post; @@ -57,10 +58,8 @@ initComments(\{ ]; # Only actually have the comment section if the post isn't hidden optl !$post.hidden, -> {div :id, :class}; + generate-footer; ]; - # TODO: Setup Comments - # TODO: Setup footer - # my $footer; my $html = html :lang, [ $head, @@ -85,6 +84,7 @@ method generate-index($db) { div :class, [ h1 "Recent Posts" ], @most-recent; + generate-footer; ]; my $html = @@ -110,6 +110,7 @@ method generate-archive($db) { div :class, [ h1 "All Posts" ], @most-recent; + generate-footer; ]; my $html = @@ -168,6 +169,7 @@ method generate-tags-page($db, @tags) { div :class, [ h1 "Tags"; ], @tags.map(-> $tag {self.generate-tag-blurb($db, $tag, 4)}); + generate-footer; ]; my $html = @@ -184,6 +186,7 @@ method generate-tag-page($db, $tag) { my $body = body [ site-header $db.meta; self.generate-tag-blurb($db, $tag, 4); + generate-footer; ]; my $html = diff --git a/lib/Render/Foot.rakumod b/lib/Render/Foot.rakumod new file mode 100644 index 0000000..c48b141 --- /dev/null +++ b/lib/Render/Foot.rakumod @@ -0,0 +1,69 @@ +use v6.e.PREVIEW; +unit module Render::Foot; + +use HTML::Functional; + +use Render::Util; +use DB::BlogMeta; + +sub footer-link($name, $title, $path, $icon) { + div :class, [ + $icon; + a :href($path), :title($title), [ + $name; + ] + ] +} + +sub generate-footer() is export { + footer [ + div :class, [ + div :class, span "Contact Me"; + div :class, [ + footer-link (^ "@thatonelutenist"), + "Discord", + "https://discordapp.com/users/thatonelutenist", + simple-icon "discord"; + footer-link (^ "@thatonelutenist:stranger.systems"), + "Matrix", + "https://matrix.to/#/@thatonelutenist:stranger.systems", + simple-icon "matrix"; + footer-link (^ "~thatonelutenist/public-inbox@lists.sr.ht"), + "Email", + "mailto:~thatonelutenist/public-inbox@lists.sr.ht", + icon-solid "envelope"; + ]; + ]; + div :class, [ + div :class, span "Find My Code"; + div :class, [ + footer-link "git.stranger.systems", + "Stranger Systems Forgejo", + "https://git.stranger.systems/explore/repos", + simple-icon "forgejo"; + footer-link (^ "~thatonelutenist"), + "sr.ht", + "https://sr.ht/~thatonelutenist/", + simple-icon "sourcehut"; + footer-link (^ "@nmccarty"), + "Github", + "https://github.com/nmccarty", + simple-icon "github"; + footer-link (^ "@thatonelutenist"), + "Gitlab", + "https://gitlab.com/thatonelutenist", + simple-icon "gitlab"; + ]; + ]; + div :class, [ + div :class, span "Social Media"; + div :class, [ + footer-link "@thatonelutenist@hachyderm.io", + "Mastodon", + "https://hachyderm.io/@thatonelutenist", + simple-icon "mastodon"; + ]; + ] + ] +} + diff --git a/lib/Render/Head.rakumod b/lib/Render/Head.rakumod index e8177f8..88c2b13 100644 --- a/lib/Render/Head.rakumod +++ b/lib/Render/Head.rakumod @@ -41,11 +41,14 @@ sub generate-head(BlogMeta:D $meta, $title?, $description?) is export { :href; link :rel, :href; + + # Verify mastodon + link :rel, :href; # Tell dark reader that we'll behave meta :name, :content; # Tell feed readers about our feed link :rel, :type, :title($meta.title), - :href; + :href; ] } diff --git a/lib/Render/Series.rakumod b/lib/Render/Series.rakumod index f0b2adf..15f6579 100644 --- a/lib/Render/Series.rakumod +++ b/lib/Render/Series.rakumod @@ -3,6 +3,7 @@ unit module Render::Series; use Render::Util; use Render::Head; +use Render::Foot; use Render::Post; use DB::Post; use DB::Series; @@ -93,7 +94,8 @@ sub series-page(Int:D $series-id, $db) is export { series-header $series, $db; div :class, $series.post-ids.map(*.&generate-blurb($db)); - ] + ]; + generate-footer; ]; my $html = html :lang, [ diff --git a/lib/Render/Util.rakumod b/lib/Render/Util.rakumod index 4a94800..af63505 100644 --- a/lib/Render/Util.rakumod +++ b/lib/Render/Util.rakumod @@ -49,10 +49,18 @@ sub icon($icon) is export { i(:class("bx bx-$icon")) } +sub icon-solid($icon) is export { + i(:class("bx bxs-$icon")) +} + sub logo($logo) is export { i(:class("bx bxl-$logo")) } +sub simple-icon($icon) is export { + img :src("https://cdn.simpleicons.org/$icon/474747/b9b9b9") +} + sub mins-to-string($mins) is export { if $mins < 60 { $mins.Str ~ "m" diff --git a/resources/colors.css b/resources/colors.css index 7cbfe09..5f67b2c 100644 --- a/resources/colors.css +++ b/resources/colors.css @@ -91,6 +91,15 @@ blockquote { .unit-test .bx-info-circle { color: var(--yellow); } +footer { + background-color: var(--bg-0); +} +footer > div { + background-color: var(--bg-1); +} +.footer-link { + background-color: var(--bg-2); +} /* Colorization for idris code blocks */ code { diff --git a/resources/main.css b/resources/main.css index 80fb6d1..e36a915 100644 --- a/resources/main.css +++ b/resources/main.css @@ -8,6 +8,7 @@ --box-padding-horz: 1rem; --box-margin-vert: 0.5rem; --box-margin-horz: 0.5rem; + --footer-padding: 0.25rem; --box-gap: 0.5rem; --box-radius: 1rem; } @@ -79,10 +80,16 @@ body, .post, .series { flex-wrap: wrap; margin-top: var(--box-margin-vert); } -.header-links > a > span, .post-series-tag > a > span, .post-tag > a > span { +.header-links > a > span, +.post-series-tag > a > span, +.post-tag > a > span, +.footer-link > a > div { text-decoration: underline; } -.header-links > a, .post-series-tag > a, .post-tag > a { +.header-links > a, +.post-series-tag > a, +.post-tag > a, +.footer-link > a { text-decoration: none; } @@ -174,7 +181,6 @@ blockquote { .tag-blurb-links { display: block; border-radius: var(--box-radius); - border-radius: var(--box-radius); display: flex; flex-flow: row wrap; gap: var(--box-gap); @@ -197,6 +203,60 @@ blockquote { .tag-blurb-title { margin-top: var(--box-margin-vert); margin-bottom: 0; - font-size: 1.5em; + font-size: 1.5rem; font-weight: bold; } + +/* Style the footer */ +footer { + display: flex; + flex-direction: row; + align-items: stretch; + gap: var(--box-gap); + max-width: var(--content-width); + width: 100%; + border-radius: var(--box-radius); + padding: var(--box-padding-vert) var(--box-padding-horz); + font-size: 0.8rem; +} +footer > div { + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-around; + flex: 1; + gap: var(--box-gap); + border-radius: var(--box-radius); + padding: var(--footer-padding); +} +.footer-title { + font-size: 1rem; + font-weight: bold; +} +footer i { + font-size: 1rem; + line-height: 0.8rem; +} +.footer-link > a { + margin-left: 0.25rem; +} +.footer-link > img { + height: 1rem; + width: 1rem; + margin: 0.1rem; +} +.footer-links { + display: flex; + flex-flow: row wrap; + /* align-items: center; */ + gap: var(--box-gap); + border-radius: var(--box-radius); + padding: var(--footer-padding); +} +.footer-link { + display: flex; + flex-flow: row nowrap; + align-content: center; + border-radius: 0.25rem; + padding: var(--footer-padding); +}