From c9d38e16cb736b9692a3e7726ea9f0c00702230e Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 27 Dec 2020 16:04:21 -0800 Subject: Fix building on latest coleslaw --- .coleslawrc | 40 +++++++++++++++ themes/default/base.tmpl | 57 +++++++++++++++++++++ themes/default/css/cc-by-sa.png | Bin 0 -> 672 bytes themes/default/css/logo_large.jpg | Bin 0 -> 52898 bytes themes/default/css/logo_medium.jpg | Bin 0 -> 26688 bytes themes/default/css/logo_small.jpg | Bin 0 -> 19931 bytes themes/default/css/style.css | 100 +++++++++++++++++++++++++++++++++++++ themes/default/index.tmpl | 34 +++++++++++++ themes/default/post.tmpl | 27 ++++++++++ 9 files changed, 258 insertions(+) create mode 100644 .coleslawrc create mode 100644 themes/default/base.tmpl create mode 100644 themes/default/css/cc-by-sa.png create mode 100644 themes/default/css/logo_large.jpg create mode 100644 themes/default/css/logo_medium.jpg create mode 100644 themes/default/css/logo_small.jpg create mode 100644 themes/default/css/style.css create mode 100644 themes/default/index.tmpl create mode 100644 themes/default/post.tmpl diff --git a/.coleslawrc b/.coleslawrc new file mode 100644 index 0000000..3e26fa8 --- /dev/null +++ b/.coleslawrc @@ -0,0 +1,40 @@ +;;; -*- mode : lisp -*- +(;; Required information + :author "Tom Willemse" ;; to be placed on post pages and in the copyright/CC-BY-SA notice + :deploy-dir "deploy/" ;; for Coleslaw's generated HTML to go in + :domain "//ryuslash.org/" ;; to generate absolute links to the site content. Note: with :cname option of gh-pages, this requires a url scheme, e.g. https://fake.org + :routing ((:post "posts/~a") ;; to determine the URL scheme of content on the site + (:tag-index "tag/~a") + (:month-index "date/~a") + (:numeric-index "~d") + (:feed "~a.xml") + (:tag-feed "tag/~a.xml")) + :title "Improved Means for Achieving Deteriorated Ends" ;; a site title + :theme "oni" ;; to select one of the themes in "coleslaw/themes/" + + ;; Optional information + :excerpt-sep "" ;; to set the separator for excerpt in content + :feeds ("lisp") + :plugins (; (incremental) ;; *Remove comment to enable incremental builds. + (mathjax) + (sitemap) + (static-pages) + ;; deployment plugins + ;; deployment to github pages + ; (gh-pages :url "git@github.com:myaccount/myrepo.git" + ; ; :cname t ;; if you want to use the custom domain --- see http://pages.github.com/ + ; ) + ;; versioned deployment. Remove comment to enable symlinked, timestamped deploys. + ; (versioned) + ;; default deploy method is rsync + (rsync "-avz" "--delete" "--exclude" ".git/" "--exclude" ".gitignore" "--copy-links") + ) + :sitenav ((:url "http://NIL.github.com/" :name "Home") + (:url "http://twitter.com/NIL" :name "Twitter") + (:url "http://github.com/NIL" :name "Code") + (:url "http://soundcloud.com/NIL" :name "Music") + (:url "http://redlinernotes.com/docs/talks/" :name "Talks")) + :staging-dir "staging/" ;; for Coleslaw to do intermediate work, default: "/tmp/coleslaw" +) + +;; * Prerequisites described in plugin docs. diff --git a/themes/default/base.tmpl b/themes/default/base.tmpl new file mode 100644 index 0000000..24303cd --- /dev/null +++ b/themes/default/base.tmpl @@ -0,0 +1,57 @@ +{namespace coleslaw.theme.hyde} + +{template base} +{\n} + + + {$config.title} + + + + + + + {if $injections.head} + {foreach $injection in $injections.head} + {$injection |noAutoescape} + {/foreach} + {/if} + + + +
+ {$raw |noAutoescape} +
+ {if $injections.body} + {foreach $injection in $injections.body} + {$injection |noAutoescape} + {/foreach} + {/if} +
+
+ Unless otherwise credited all material + {if $config.license} + {$config.license} + {else} + + Creative Commons License + + {/if} + by {$config.author} + +
+ + +{/template} diff --git a/themes/default/css/cc-by-sa.png b/themes/default/css/cc-by-sa.png new file mode 100644 index 0000000..c67509f Binary files /dev/null and b/themes/default/css/cc-by-sa.png differ diff --git a/themes/default/css/logo_large.jpg b/themes/default/css/logo_large.jpg new file mode 100644 index 0000000..c4b820d Binary files /dev/null and b/themes/default/css/logo_large.jpg differ diff --git a/themes/default/css/logo_medium.jpg b/themes/default/css/logo_medium.jpg new file mode 100644 index 0000000..b4257e6 Binary files /dev/null and b/themes/default/css/logo_medium.jpg differ diff --git a/themes/default/css/logo_small.jpg b/themes/default/css/logo_small.jpg new file mode 100644 index 0000000..ea5c609 Binary files /dev/null and b/themes/default/css/logo_small.jpg differ diff --git a/themes/default/css/style.css b/themes/default/css/style.css new file mode 100644 index 0000000..44351fb --- /dev/null +++ b/themes/default/css/style.css @@ -0,0 +1,100 @@ +#content { background: #fff; padding-top: 1em } +#header { float: right; margin-left: 1em; margin-bottom: 1em } +#coleslaw-logo { float: right; } +a { text-decoration: none; color: #992900 } +a.anchor { color: black } +.date { font-style: italic } +.title { margin-left: 1em } +.article-meta { margin-left: 2.2em; margin-bottom: 2.2em } +.archive-title { font-size: 1em } .article-title { font-size: 2em } +.article-content { margin-left: 2.2em } +.fineprint { text-align: center; font-size: .9em; margin-top: .5em } +.tag-low { font-size: .8em; font-weight: 200 } +.tag-medium { font-size: 1.2em; font-weight: 600 } +.tag-high { font-size: 1.8em; font-weight: 800 } +.navigation { font-size: 1.2em; border-bottom: 1px solid } +body { background-color: white; font-family: Vollkorn; font-size: 14pt } +pre { overflow: auto; margin-left: 1em; padding: 0.5em; border-left: 1px dashed; + background-color: white; padding: .75em .5em; font-family: (unquote mono-font) } +tt { font-size: .9em; font-family: (unquote mono-font) } + +/* Stolen from lisppaste for the colorize output of 3bmd */ +.paste { background-color: #F4F4F4; color: black; } +.paste:hover { background-color: #F4F4F4; color: black; } +.symbol { color : #770055; background-color : transparent; border: 0px; margin: 0px;} +.special { color : #FF5000; background-color : inherit; } +.keyword { color : #770000; background-color : inherit; } +.comment { color : #007777; background-color : inherit; } +.string { color : #777777; background-color : inherit; } +.atom { color : #314F4F; background-color : inherit; } +.macro { color : #FF5000; background-color : inherit; } +.variable { color : #36648B; background-color : inherit; } +.function { color : #8B4789; background-color : inherit; } +.attribute { color : #FF5000; background-color : inherit; } +.character { color : #0055AA; background-color : inherit; } +.syntaxerror { color : #FF0000; background-color : inherit; } +.diff-deleted { color : #5F2121; background-color : inherit; } +.diff-added { color : #215F21; background-color : inherit; } +span.paren1 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren1:hover { color : inherit; background-color : #BAFFFF; } +span.paren2 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren2:hover { color : inherit; background-color : #FFCACA; } +span.paren3 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren3:hover { color : inherit; background-color : #FFFFBA; } +span.paren4 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren4:hover { color : inherit; background-color : #CACAFF; } +span.paren5 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren5:hover { color : inherit; background-color : #CAFFCA; } +span.paren6 { background-color : inherit; -webkit-transition: background-color 0.2s linear; } +span.paren6:hover { color : inherit; background-color : #FFBAFF; } + +@media (max-width: 680px) { + + #content { + padding-top: 0em + } + + .title { + margin-left: 0.1em; + } + + .article-meta { + margin-bottom: 1em; + } + + .article-meta, .article-content { + float: left; + margin-left: 0em; + margin-right: 0em; + width: 90%; + padding-left: 5%; + } + + .article, .article-content { + margin-left: 0em; + text-align: justify; + } + + img { + display: block; + margin-left: auto; + margin-right: auto; + width: 100%; + } + + #coleslaw-logo { + float: none; + } + + #coleslaw-logo img { + margin-left: auto; + margin-right: auto; + float: none; + width: auto; + } + + .fineprint a img { + width: auto; + clear: both; + } +} diff --git a/themes/default/index.tmpl b/themes/default/index.tmpl new file mode 100644 index 0000000..29cbee9 --- /dev/null +++ b/themes/default/index.tmpl @@ -0,0 +1,34 @@ +{namespace coleslaw.theme.hyde} + +{template index} +

{$index.title}

+{foreach $obj in $index.content} +
+ {$obj.title} +
posted on {$obj.date}
+
{$obj.excerpt |noAutoescape}
+
+{/foreach} +
+ {if $prev} Previous {/if} + {if $next} Next {/if} +
+{if $tags} +
+

This blog covers + {foreach $tag in $tags} + {$tag.name}{nil} + {if not isLast($tag)},{sp}{/if} + {/foreach} +

+{/if} +{if $months} +
+

View content from + {foreach $month in $months} + {$month.name}{nil} + {if not isLast($month)},{sp}{/if} + {/foreach} +

+{/if} +{/template} diff --git a/themes/default/post.tmpl b/themes/default/post.tmpl new file mode 100644 index 0000000..f7b81bc --- /dev/null +++ b/themes/default/post.tmpl @@ -0,0 +1,27 @@ +{namespace coleslaw.theme.hyde} + +{template post} +
{\n} +

{$post.title}

{\n} +
{\n} + {if $post.tags} + Tagged as {foreach $tag in $post.tags} + {$tag.name}{nil} + {if not isLast($tag)},{sp}{/if} + {/foreach} + {/if} +
{\n} +
{\n} + {if $post.date} + Written on {$post.date} + {/if} +
{\n} +
{\n} +
{\n} + {$post.text |noAutoescape} +
{\n} +
{\n} + {if $prev} Previous
{/if}{\n} + {if $next} Next
{/if}{\n} +
{\n} +{/template} -- cgit v1.2.3-54-g00ecf