This commit is contained in:
Michael Zhang 2020-02-11 21:51:19 -06:00
parent ac0b7c9b29
commit 6d7436e829
Signed by: michael
GPG Key ID: BDA47A31A3C8EE6B
6 changed files with 28 additions and 9 deletions

View File

@ -9,6 +9,9 @@ taxonomies = [
{ name = "tags", rss = true }
]
[external_renderers]
dot = "set -e; echo -n '<p class=\"graphviz\">'; dot -Tsvg | tail -n +4; echo '</p>'"
[extra]
nav_links = [
{ url = "/", text = "home" },

View File

@ -1,8 +0,0 @@
+++
title = "implementing untyped lambda calculus"
date = 2019-03-04
draft = true
[taxonomies]
tags = []
+++

View File

@ -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

View File

@ -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;
}

View File

@ -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";
}

View File

@ -2,7 +2,7 @@
<table style="width: 100%;">
{% for post in posts %}
{% if not post.draft %}
<tr>
<tr class="postlisting-row">
<td>
<span style="font-size: 1.2em;">
<a href="{{ post.permalink }}" class="brand-colorlink">{{ post.title }}</a>