diff --git a/content/thethirdcan.md b/content/thethirdcan.md index da0229b..b84ef1c 100644 --- a/content/thethirdcan.md +++ b/content/thethirdcan.md @@ -1,5 +1,9 @@ +++ title = "the third can" + +[extra] +image = "/ttc_config.png" +image_desc = "a screenshot of The Third Can's configuration page, v0.2.0" +++ i made a browser extension with [theki](https://theki.club) and contributions from [sandvich](https://sandvich.xyz). it adds lots of useful features to [TwoCans](https://twocansandstring.com). diff --git a/sass/style.scss b/sass/style.scss index 415ebd8..77dae21 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -1,6 +1,7 @@ $fave: #aa71fa; $off-dark: #1b181e; $body-bg: #d5bbf9; +$body-bg-light: #e1ccff; $code-bg: #baa6d8; $code-block-bg: #2b303b; @@ -83,6 +84,19 @@ code { border-radius: 0.25em; } +#main-image { + float: right; + border: 0.15em solid $off-dark; + border-radius: 0.3em; + padding: 0.3em; + margin-right: -2em; + background-color: $body-bg-light; + max-width: 50%; + img { + width: 100%; + } +} + @font-face { font-family: lipamanka; src: url(/linjamanka.woff); diff --git a/static/ttc_config.png b/static/ttc_config.png new file mode 100644 index 0000000..523e82c Binary files /dev/null and b/static/ttc_config.png differ diff --git a/templates/base.html b/templates/base.html index 6f68239..6c9cdb7 100644 --- a/templates/base.html +++ b/templates/base.html @@ -15,6 +15,13 @@ why zinc
+ {% if page.extra.image and page.extra.image_desc %} +
+ {{ page.extra.image_desc }} +
+ {{ page.extra.image_desc }} +
+ {% endif %} {% block content %} {% endblock %}