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

github.com/softwareyoga/ronu-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeepak Karanth <deepak@softwareyoga.com>2020-03-04 02:20:29 +0300
committerGitHub <noreply@github.com>2020-03-04 02:20:29 +0300
commit1ba46f18bf0c5f53ad06e0c4051235a15662ba31 (patch)
treea81a84f1360d37787361b2a47023eb752c4162e0
parentf72448c8e75cccc65f75c9c2e35fe7f39762e9d8 (diff)
Updated Readme to add blank lines before and after code blocks
-rw-r--r--README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/README.md b/README.md
index c5e9d7c..b7262b9 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,8 @@ Ronu is a clean and simple responsive theme for [hugo](https://gohugo.io). It si
Live demo at: [softwareyoga.com](https://www.softwareyoga.com)
No more of messy html like this that is full of css classes...
-```
+
+```html
<html>
<body>
<div class="w3-row-padding w3-container">
@@ -17,9 +18,10 @@ No more of messy html like this that is full of css classes...
</body>
</html>
```
+
Instead, you will have beautifully formatted plain html without having to specify any css classes, thanks to [Sakura](https://oxal.org/projects/sakura) - A classless css framework.
-```
+```html
<html>
<body>
<h1>Blog</h1>
@@ -28,6 +30,7 @@ Instead, you will have beautifully formatted plain html without having to specif
</body>
</html>
```
+
The uncluttered user interface (and clean code) make it a delight to work with, focussing on the most important aspect - The Content.
![Ronu screenshot](https://github.com/softwareyoga/ronu-hugo-theme/blob/master/images/screenshot.png)
@@ -42,14 +45,18 @@ The uncluttered user interface (and clean code) make it a delight to work with,
### Standard Installation
To install Ronu as your default theme, first install this repository in the `themes/` directory:
+
```
$ cd themes/
$ git clone https://github.com/softwareyoga/ronu-hugo-theme
```
+
Second, specify `ronu` as your default theme in the `config.toml` file. Just add the line
+
```
theme = "ronu"
```
+
at the top of the file.