diff options
-rw-r--r-- | cmd/generate/imworkingon.html.tmpl | 7 | ||||
-rw-r--r-- | public/imworkingon/imworkingon.scss | 9 | ||||
-rw-r--r-- | public/sponsor/index.html | 3 |
3 files changed, 13 insertions, 6 deletions
diff --git a/cmd/generate/imworkingon.html.tmpl b/cmd/generate/imworkingon.html.tmpl index 6b5016a..364ab71 100644 --- a/cmd/generate/imworkingon.html.tmpl +++ b/cmd/generate/imworkingon.html.tmpl @@ -7,9 +7,11 @@ <link rel="stylesheet" type="text/css" href="imworkingon.css"> </head> <body> + <header><a href="/">Luke T. Shumaker</a> » imworkingon</header> <section id="tags"> - <h1>Luke is working on...</h1> - <p>... improving the GNU/Linux ecosystem.</p> + <h1>Luke is working on<br/><small>improving the GNU/Linux ecosystem</small></h1> + <p>If you find this work valuable, pleas + considor <a href="../sponsor/">sponsoring me.</a></p> {{- range $tagName, $tagInfo := .Tags }} <article class="tag" id="tag-{{ $tagName }}"> <h2><a href="#tag-{{ $tagName }}">#{{ $tagName }}</a> : {{ $tagInfo.PrettyName }}</h2> @@ -18,7 +20,6 @@ {{- end }} </section> <section id="contribs"> - <h1>... by contributing...</h1> {{- range $contrib := .Contribs }} {{ $upstream := $contrib | getUpstream }} <article class="contrib"> diff --git a/public/imworkingon/imworkingon.scss b/public/imworkingon/imworkingon.scss index 99885f2..ef2995e 100644 --- a/public/imworkingon/imworkingon.scss +++ b/public/imworkingon/imworkingon.scss @@ -1,3 +1,7 @@ +* { + box-sizing: border-box; +} + article { border: solid 1px #333333; border-radius: 1em; @@ -28,6 +32,7 @@ article.contrib { "uname url url url" "uname tag tag tag" "udesc desc desc desc"; + gap: 1px; overflow: hidden; & > div { @@ -37,6 +42,7 @@ article.contrib { @mixin color-panel { background-color: #DDDDFF; border: solid 1px #8D8DA6; + margin: -1px; } div.contrib-upstream-name { @@ -52,7 +58,6 @@ article.contrib { } div.contrib-urls { grid-area: url; - padding-bottom: 0; } div.contrib-tags { @@ -72,6 +77,6 @@ article.contrib { @include color-panel; } div.contrib-desc { - @include color-panel; + grid-area: desc; } } diff --git a/public/sponsor/index.html b/public/sponsor/index.html index d8f1ef0..f646f1b 100644 --- a/public/sponsor/index.html +++ b/public/sponsor/index.html @@ -20,9 +20,10 @@ </style> </head> <body> +<header><a href="/">Luke T. Shumaker</a> » sponsor</header> <article> -<h1>Sponsor Luke T. Shumaker</h1> +<h1>Sponsor Luke</h1> <p>Hi, I'm Luke. I'm working on improving various aspects of the GNU/Linux-libre ecosystem.</p> |