From: Evgenii Akentev Date: Thu, 3 Nov 2022 20:43:33 +0000 (+0400) Subject: Add avatar and links X-Git-Url: https://git.xn--bdkaa.com/?a=commitdiff_plain;h=2a57cd92cfbb53b445ff9d138639d65ec635dbb2;p=xn--bdkaa.com.git Add avatar and links --- diff --git a/config.toml b/config.toml index 835a27a..defb561 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,6 @@ baseURL = "https://ak3n.com/" languageCode = "en-us" -title = "ak3n.com" +title = "Evgenii Akentev" theme = "theme" [taxonomies] diff --git a/themes/theme/layouts/_default/list.html b/themes/theme/layouts/_default/list.html index b9f855a..cbe0968 100644 --- a/themes/theme/layouts/_default/list.html +++ b/themes/theme/layouts/_default/list.html @@ -1,5 +1,7 @@ {{ partial "header.html" . }} +{{ partial "subheader.html" . }} +

Posts tagged "{{ .Title }}":

diff --git a/themes/theme/layouts/_default/single.html b/themes/theme/layouts/_default/single.html index b2ef453..c6a3071 100644 --- a/themes/theme/layouts/_default/single.html +++ b/themes/theme/layouts/_default/single.html @@ -1,5 +1,7 @@ {{ partial "header.html" . }} +{{ partial "subheader.html" . }} +

{{ .Title }}

@@ -14,7 +16,7 @@ {{ partial "headline.html" .Content }}
- If you have a comment or feedback you may send an email to ~ak3n/ak3n.com@lists.sr.ht. + If you have a comment or feedback you may say hi.
diff --git a/themes/theme/layouts/index.html b/themes/theme/layouts/index.html index 8f375a6..e271633 100644 --- a/themes/theme/layouts/index.html +++ b/themes/theme/layouts/index.html @@ -1,4 +1,17 @@ {{ partial "header.html" . }} +
+
+ Me, Myself, I +
+ +
+ +
+
    diff --git a/themes/theme/layouts/partials/header.html b/themes/theme/layouts/partials/header.html index 6f4d059..0f6d928 100644 --- a/themes/theme/layouts/partials/header.html +++ b/themes/theme/layouts/partials/header.html @@ -8,7 +8,4 @@ -
    -

    ¯\_(ツ)_/¯

    -
    diff --git a/themes/theme/layouts/partials/subheader.html b/themes/theme/layouts/partials/subheader.html new file mode 100644 index 0000000..ef7445c --- /dev/null +++ b/themes/theme/layouts/partials/subheader.html @@ -0,0 +1,3 @@ +
    +

    ¯\_(ツ)_/¯

    +
    diff --git a/themes/theme/static/css/stylesheet.css b/themes/theme/static/css/stylesheet.css index 87d4ec7..aca76c7 100644 --- a/themes/theme/static/css/stylesheet.css +++ b/themes/theme/static/css/stylesheet.css @@ -5,7 +5,7 @@ body { max-width: 50em; } -#page-title { +.center { text-align: center; } @@ -17,6 +17,18 @@ a { text-decoration: none; } +#info ul { + margin-top: 1em; + padding: 0; + list-style-type: none; +} + +#info ul li { + margin-left: 1em; + margin-right: 1em; + display: inline; +} + #dashboard ul { list-style-type: none; } @@ -128,4 +140,10 @@ h1:hover a, h2:hover a, h3:hover a, h4:hover a, -h5:hover a { visibility: visible } \ No newline at end of file +h5:hover a { visibility: visible } + +img.avatar { + margin-top: 2em; + border-radius: 50%; + width: 200px; +} \ No newline at end of file diff --git a/themes/theme/static/img/me_myself_i.jpg b/themes/theme/static/img/me_myself_i.jpg new file mode 100644 index 0000000..fe87eea Binary files /dev/null and b/themes/theme/static/img/me_myself_i.jpg differ