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

github.com/rafed/ramium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/content/posts/1. markdown-syntax.md4
-rw-r--r--layouts/_default/single.html2
-rw-r--r--static/css/ramium.css5
3 files changed, 8 insertions, 3 deletions
diff --git a/exampleSite/content/posts/1. markdown-syntax.md b/exampleSite/content/posts/1. markdown-syntax.md
index a4495b8..bc745dd 100644
--- a/exampleSite/content/posts/1. markdown-syntax.md
+++ b/exampleSite/content/posts/1. markdown-syntax.md
@@ -118,8 +118,8 @@ html
#### Nested list
* Item
-1. First Sub-item
-2. Second Sub-item
+ 1. First Sub-item
+ 2. Second Sub-item
## Other Elements — abbr, sub, sup, kbd, mark
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 3a30fb3..4f4af35 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,7 +1,7 @@
{{ define "main" }}
<div class="content blog">
- <h1 class="title">{{ .Title | title }}</h1>
+ <h1>{{ .Title | title }}</h1>
<div id="infobar" class="level is-mobile">
<div class="level-left">
diff --git a/static/css/ramium.css b/static/css/ramium.css
index e0ae0b0..eacb0c6 100644
--- a/static/css/ramium.css
+++ b/static/css/ramium.css
@@ -215,3 +215,8 @@ kbd {
padding-right: 5px;
border-radius: 4px;
}
+
+/**** For codes ****/
+.highlight {
+ font-size: 0.9em;
+} \ No newline at end of file