Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/progrhyme/hugo-theme-bootie-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkey-amb <yasutake.kiyoshi@gmail.com>2015-04-29 10:50:42 +0300
committerkey-amb <yasutake.kiyoshi@gmail.com>2015-04-29 10:50:42 +0300
commitd0f090d78cf9d62f8467a8dd2924bddbd8bc5139 (patch)
treefb2f1f027482bf66342c4365ae5be407bf418270
parentd321a882d336cf05e030b335658ee63482fc188e (diff)
default tag & category; modify header design
-rw-r--r--archetypes/default.md2
-rw-r--r--layouts/_default/single.html6
-rw-r--r--static/css/bootie-docs.css8
3 files changed, 12 insertions, 4 deletions
diff --git a/archetypes/default.md b/archetypes/default.md
index f7ba421..1c77093 100644
--- a/archetypes/default.md
+++ b/archetypes/default.md
@@ -1,2 +1,4 @@
+++
+categories = ["general"]
+tags = ["document"]
+++ \ No newline at end of file
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 141df49..3063cfb 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -5,8 +5,10 @@
<main role="main">
<article>
<a id="title"></a>
- <h1 class="entry-title">{{ .Title }}</h1>
- <span class="entry-meta"><time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
+ <h1 class="doc-entry-title">{{ .Title }}</h1>
+ <div class="doc-entry-meta">
+ <span><time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
+ </div>
<section>
{{ .Content }}
</section>
diff --git a/static/css/bootie-docs.css b/static/css/bootie-docs.css
index df83121..473584b 100644
--- a/static/css/bootie-docs.css
+++ b/static/css/bootie-docs.css
@@ -18,6 +18,12 @@ h6, .h6 {
color: #333;
}
+h1, .h1,
+h2, .h2 {
+ padding-bottom: 10px;
+ border-bottom: 1px solid #eee;
+}
+
/*
* Override Bootstrap's default container.
*/
@@ -44,8 +50,6 @@ h6, .h6 {
/* List items */
.doc-list-header {
- margin-bottom: 10px;
- border-bottom: 1px solid #eee;
}
.doc-entry {
color: #666;