make blog titles clickable; some more style tunes
authorRalf Jung <post@ralfj.de>
Thu, 8 Oct 2015 19:50:29 +0000 (21:50 +0200)
committerRalf Jung <post@ralfj.de>
Thu, 8 Oct 2015 19:50:29 +0000 (21:50 +0200)
_plugins/readmes.rb
_posts/2015-10-10-welcome.md
blog/index.html
style.scss

index 6b8c80e97616c3fabea86f700ffc2ce6269adbd3..f70258975415f5ad04b19f6e04aaf640373a5045 100644 (file)
@@ -12,7 +12,7 @@ module Jekyll
       
       content = File.read(src, self.merged_file_read_opts({})).each_line.to_a
 
       
       content = File.read(src, self.merged_file_read_opts({})).each_line.to_a
 
-      self.data['layout'] = 'default'
+      self.data['layout'] = 'page'
       self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1]
       slug = self.data['title'].match(/^([^:]*):.*$/)
       if slug
       self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1]
       slug = self.data['title'].match(/^([^:]*):.*$/)
       if slug
@@ -23,7 +23,7 @@ module Jekyll
     end
   end
 
     end
   end
 
-  class CategoryPageGenerator < Generator
+  class ReadmePageGenerator < Generator
     safe true
 
     def generate(site)
     safe true
 
     def generate(site)
index c3f71a9fb0cbaf73e46893ad9c877a07cdb6c797..c4c39503179ae53c12182939f37c027097ccdb2b 100644 (file)
@@ -1,5 +1,5 @@
 ---
 ---
-subtitle: Welcome
+title: Welcome
 categories: meta
 ---
 
 categories: meta
 ---
 
index 7ab91943be46ac8478273dcc3bec495af4b0657a..70032ce218c9eeb4941f03b338316b159c0843a8 100644 (file)
@@ -10,7 +10,7 @@ rss: true
     {% if num_posts >= 0 %}
         <header class="subtitle">
             <div class="side"><a href="{{ post.url }}">Permalink</a> • {{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</div>
     {% if num_posts >= 0 %}
         <header class="subtitle">
             <div class="side"><a href="{{ post.url }}">Permalink</a> • {{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</div>
-            <h1>{{ post.subtitle }}</h1>
+            <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
         </header>
         {{ post.content }}
     {% endif %}
         </header>
         {{ post.content }}
     {% endif %}
index c01d0117217078fbc575c9323a50d95cfcb88d04..914f5f9f13660b5d65e3e0532eb9929d90ac9204 100644 (file)
@@ -3,12 +3,42 @@ hide: true
 ---
 @charset "utf-8";
 
 ---
 @charset "utf-8";
 
+/* Variables */
+$navi-width:      11em;
+$navi-indent:     1.2em;
+$frame-max-width: 50em;
+$intrusion-width: 1.0em;
+$outer-margin:    0.8em;
+$full-content-width: $frame-max-width + $navi-width + 2*$outer-margin + $intrusion-width;
+
+$background-color:       white;
+$text-color:             #313131;
+$light-text-color:       #808080;
+$code-background-color:  #F7F7F7;
+$link-color:             #268BD2;
+
 /* General Fonts */
 html, body, div, p {
     font-family: DejaVu Sans, Verdana, Arial, sans-serif;
     font-size: 12pt;
 /* General Fonts */
 html, body, div, p {
     font-family: DejaVu Sans, Verdana, Arial, sans-serif;
     font-size: 12pt;
+    color: $text-color;
+}
+/* Links */
+a {
+    text-decoration: none;
+    color: $link-color;
+}
+a:hover, a:focus {
+    text-decoration: underline;
 }
 /* Header Size & Spacing */
 }
 /* Header Size & Spacing */
+h1, h2, h3, h4 {
+    color: $text-color;
+
+    a {
+        color: $text-color;
+    }
+}
 h1 {
     margin-top: 0.1em;
     font-size: 200%;
 h1 {
     margin-top: 0.1em;
     font-size: 200%;
@@ -31,32 +61,19 @@ h4 {
 }
 
 /* Layout and Color stuff */
 }
 
 /* Layout and Color stuff */
-$navi-width:      11em;
-$navi-indent:     1.2em;
-$frame-max-width: 50em;
-$intrusion-width: 1.0em;
-$outer-margin:    0.8em;
-$full-content-width: $frame-max-width + $navi-width + 2*$outer-margin + $intrusion-width;
-
-$background-color:       white;
-$text-color:             #313131;
-$light-text-color:       #808080;
-$code-background-color:  #F7F7F7;
-$link-color:             #268BD2;
 
 /* General page structure */
 body { /* This centers us in the page, and handles the "too wide" case */
     padding: 0;
     margin: 0 auto;
 
 /* General page structure */
 body { /* This centers us in the page, and handles the "too wide" case */
     padding: 0;
     margin: 0 auto;
-    color: $text-color;
     background-color: $background-color;
     max-width: calc(#{$full-content-width + $navi-width} + 1px); /* add the right-hand "navi" for centering - and the border... ;-) */
 }
 #-frame { /* Add a frame, full height */
     margin: 0 $navi-width;
     background-color: $background-color;
     max-width: calc(#{$full-content-width + $navi-width} + 1px); /* add the right-hand "navi" for centering - and the border... ;-) */
 }
 #-frame { /* Add a frame, full height */
     margin: 0 $navi-width;
-    padding-top: 1em;
+    padding-top: $outer-margin;
     border-left: solid $text-color 1px;
     border-left: solid $text-color 1px;
-    min-height: calc(100vh);
+    min-height: calc(100vh - #{$outer-margin});
 }
 
 /* The content of the frame */
 }
 
 /* The content of the frame */
@@ -66,7 +83,7 @@ body { /* This centers us in the page, and handles the "too wide" case */
 #-content {
     margin-left: $intrusion-width;
     padding: $outer-margin;
 #-content {
     margin-left: $intrusion-width;
     padding: $outer-margin;
-    padding-top: 1px; /* If we use 0 here, things get ugly. What?!? */
+    padding-top: 1px; /* If we use 0 here, some paddings add up things get ugly. What?!? */
 }
 
 /* Navigation menu */
 }
 
 /* Navigation menu */
@@ -97,14 +114,11 @@ body { /* This centers us in the page, and handles the "too wide" case */
         /* Always have a border, for the width to stay constant */
         border: solid transparent 1px;
     
         /* Always have a border, for the width to stay constant */
         border: solid transparent 1px;
     
-        color: $link-color;
         font-size:110%;
         font-size:110%;
-        text-decoration: none;
         text-align: left;
     }
     a.current {
         text-align: left;
     }
     a.current {
-        padding-top: 0.1em;
-        margin:  0.05em 0;
+        padding: 0.05em 0.1em;
         border: solid $text-color 1px;
         border-right: solid $background-color 1px;
         background-color: $background-color;
         border: solid $text-color 1px;
         border-right: solid $background-color 1px;
         background-color: $background-color;
@@ -114,9 +128,6 @@ body { /* This centers us in the page, and handles the "too wide" case */
         border-bottom: solid $text-color 1px;
         margin-bottom: 0.3em;
     }
         border-bottom: solid $text-color 1px;
         margin-bottom: 0.3em;
     }
-    a:hover, a:focus {
-        text-decoration: underline;
-    }
 }
 
 /* Medium-size screens */
 }
 
 /* Medium-size screens */
@@ -241,11 +252,4 @@ body { /* This centers us in the page, and handles the "too wide" case */
         margin: 0.5em 0;
         line-height: 1.3;
     }
         margin: 0.5em 0;
         line-height: 1.3;
     }
-    a {
-        text-decoration: none;
-        color: $link-color;
-    }
-    a:hover, a:focus {
-        text-decoration: underline;
-    }
 }
 }