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

github.com/invinciblycool/lekh.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinvinciblycool <jprrahultiwari@gmail.com>2021-05-02 13:44:02 +0300
committerinvinciblycool <jprrahultiwari@gmail.com>2021-05-02 13:44:02 +0300
commitcc7c597cc036f52d4fb20e9dd98483fb838c6ccb (patch)
tree7ae7f4c1bc7d47ed32812a45646a05c522a6c19b
parent5f5429c724cda435f05aeca4eb6d47590a801cb2 (diff)
Add About to layouts and config.toml
-rw-r--r--README.md1
-rw-r--r--exampleSite/config.toml1
-rw-r--r--layouts/index.html1
3 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 0d66ff6..4da8cb0 100644
--- a/README.md
+++ b/README.md
@@ -66,6 +66,7 @@ theme = "lekh"
[params]
Name = "Agent Smith"
+About = "We're not here because we're free. We're here because we're __not__ free. There's no escaping reason. No denying purpose. Because as we both know without purpose, we would not exist.<br/> Read more [here](https://matrix.fandom.com/wiki/Agent_Smith)"
Email = "agentsmith@thematrix.com"
Resume = "" # Add the filename with file extension.
PostLimit = 4 # Sets the number of posts to display on the front page
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 6361d51..bc06254 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -5,6 +5,7 @@ theme = "lekh"
[params]
Name = "Agent Smith"
+About = "We're not here because we're free. We're here because we're __not__ free. There's no escaping reason. No denying purpose. Because as we both know without purpose, we would not exist.<br/> Read more [here](https://matrix.fandom.com/wiki/Agent_Smith)"
Email = "agentsmith@thematrix.com"
Resume = "" # Add the filename with file extension.
PostLimit = 4 # Sets the number of posts to display on the front page
diff --git a/layouts/index.html b/layouts/index.html
index ece3ae5..b01779f 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -5,6 +5,7 @@
<body>
<h1>{{ .Site.Params.Name }}</h1>
+ <h4>{{ .Site.Data.personalize.About| markdownify }}</h4>
<div>{{ .Content }}</div>