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

gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkarthik <kskarthik@gitlab.io>2019-12-03 13:14:14 +0300
committerkarthik <kskarthik@gitlab.io>2019-12-03 13:14:14 +0300
commit1a7af57c476e2bbc131167b0ddb671b971a13199 (patch)
treefd3fc1d7655d05189ed9be84d3f05c6c07e49ed7
parent4ded612c4b654d25a368de2277f7fe2e4fd243af (diff)
fix typos & some html
-rw-r--r--README.md9
-rw-r--r--exampleSite/config.toml3
-rw-r--r--images/mobile.pngbin66089 -> 66027 bytes
-rw-r--r--images/screenshot.pngbin54846 -> 54798 bytes
-rw-r--r--images/tn.pngbin29022 -> 28981 bytes
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/_default/single.html6
-rw-r--r--layouts/partials/header.html1
8 files changed, 11 insertions, 10 deletions
diff --git a/README.md b/README.md
index 0992797..db1aad5 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
![Screenshot](https://gitlab.com/kskarthik/monopriv/raw/master/images/screenshot.png "Desktop View")
-
+<br>
![Screenshot](https://gitlab.com/kskarthik/monopriv/raw/master/images/tn.png "Tab view")
-
+<br>
![Screenshot](https://gitlab.com/kskarthik/monopriv/raw/master/images/mobile.png "Mobile View")
**The images used in theme are only for demonstration purpose, Please don't use those images.**
@@ -18,12 +18,11 @@ $ git clone https://gitlab.com/kskarthik/monopriv.git
## Main features
* Fully Responsive Ready.
-* Powered by bootstrap 4 css framework.
+* Powered by bootstrap 4 CSS framework.
* Well Crafted for Personal blog
-* Blog enabled
* Works without javascript !
-## Contribute
+## Contribute
Feel free to contribute changes, features to this theme!
## Reporting Issues
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index f68479e..9a60555 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -9,9 +9,10 @@ DefaultContentLanguage = "en"
enableInlineShortcodes = true
footnoteReturnLinkContents = "^"
theme = "monopriv"
+enableEmoji = true
[params]
-about = "A privacy forcused minimal bootstrap theme"
+about = "A privacy focused minimal bootstrap theme"
github = "https://github.com"
gitlab = "https://gitlab.com"
email = "mail@example.com"
diff --git a/images/mobile.png b/images/mobile.png
index 8ebca1c..7929523 100644
--- a/images/mobile.png
+++ b/images/mobile.png
Binary files differ
diff --git a/images/screenshot.png b/images/screenshot.png
index 991b79c..a9784cc 100644
--- a/images/screenshot.png
+++ b/images/screenshot.png
Binary files differ
diff --git a/images/tn.png b/images/tn.png
index 5f7b4be..d2ca512 100644
--- a/images/tn.png
+++ b/images/tn.png
Binary files differ
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 90d0dc7..675fa25 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,4 +1,5 @@
<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
{{- partial "header.html" . -}}
<body>
<div id="content">
@@ -7,3 +8,4 @@
</div>
</body>
{{- partial "footer.html" . -}}
+</html>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 354e5f4..6369bec 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -3,9 +3,9 @@
<section class="container text-monospace text-justified mt-3">
<h2>{{.Title}}</h2>
<small class="text-secondary">Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read</small>
- <p>{{ .Content }}</p>
+ {{ .Content }}
<small>Please mail your comments to <a href="{{.Site.Params.email}}">{{.Site.Params.email}}</a></small><br>
- <code>Tags:
+ <code>tags:
{{- range .Params.tags -}}
<span class='badge badge-dark'><a class='text-white' href='{{ "tags/" | absURL }}{{ . | lower }}'>{{ . }}</a></span>
{{ end }}
@@ -15,7 +15,7 @@
{{else}}
<section class="container text-monospace text-justified mt-3">
<h2 class="text-center">{{.Title}}</h2>
- <p>{{ .Content }}</p>
+ {{ .Content }}
</section>
{{end}}
{{end}}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index d000e27..e0801a1 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,6 +1,5 @@
<head>
<meta charset="utf-8">
- <meta lang="{{ .Site.LanguageCode }}">
<meta name="description" content='{{ .Site.Params.metadesc }}'>
<meta name="keywords" content='{{ .Site.Params.metakeys }}'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">