diff --git a/config.toml b/config.toml index b1b0851..8698586 100644 --- a/config.toml +++ b/config.toml @@ -9,6 +9,9 @@ taxonomies = [ { name = "tags", rss = true } ] +[external_renderers] +dot = "set -e; echo -n '

'; dot -Tsvg | tail -n +4; echo '

'" + [extra] nav_links = [ { url = "/", text = "home" }, diff --git a/content/2020-01-30-untyped-lambda-calculus-in-rust.md b/content/2020-01-30-untyped-lambda-calculus-in-rust.md deleted file mode 100644 index 2ada66a..0000000 --- a/content/2020-01-30-untyped-lambda-calculus-in-rust.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "implementing untyped lambda calculus" -date = 2019-03-04 -draft = true - -[taxonomies] -tags = [] -+++ diff --git a/content/2020-02-11-enterprise-update.md b/content/2020-02-11-enterprise-update.md new file mode 100644 index 0000000..8b60375 --- /dev/null +++ b/content/2020-02-11-enterprise-update.md @@ -0,0 +1,14 @@ ++++ +title = "enterprise: a new ui framework" +date = 2020-02-11 +draft = true + +[taxonomies] +tags = [] ++++ + +This past weekend, while on my trip to Minneapolis, I completed a very early prototype of "enterprise", a new UI framework I've been kind of envisioning over the past couple of weeks. While the UI framework is mainly targeted at web apps, the hope is that with a bit more effort, native UIs can be produced with almost no changes to existing applications. Before I begin to describe how it works, I'd like to acknowledge [Nathan Ringo][1] for his massively helpful feedback in both the ideation and the implementation process. + +## Goals of the project + +[1]: https://remexre.xyz diff --git a/sass/_content.scss b/sass/_content.scss index bdc8d70..c7dc2a4 100644 --- a/sass/_content.scss +++ b/sass/_content.scss @@ -29,6 +29,10 @@ header { } } +small { + color: $small-text-color; +} + a { color: $link-color; text-decoration: none; @@ -43,6 +47,10 @@ a { } } +.postlisting-row td { + padding-bottom: 12px; +} + #content { line-height: 1.25em; } diff --git a/sass/main.scss b/sass/main.scss index 5b18899..e7aa9aa 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -8,6 +8,7 @@ $monofont: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas" @media (prefers-color-scheme: light) { $background-color: #EADFD4; $text-color: #15202B; + $small-text-color: lighten($text-color, 10%); $link-color: royalblue; @import "content"; } @@ -15,6 +16,7 @@ $monofont: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas" @media (prefers-color-scheme: dark) { $background-color: #15202B; $text-color: #EADFD4; + $small-text-color: darken($text-color, 10%); $link-color: lightskyblue; @import "content"; } diff --git a/templates/macros/blog.html b/templates/macros/blog.html index 6a34406..151c85b 100644 --- a/templates/macros/blog.html +++ b/templates/macros/blog.html @@ -2,7 +2,7 @@ {% for post in posts %} {% if not post.draft %} - +
{{ post.title }}