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:
authorRahul Tiwari <jprrahultiwari@gmail.com>2020-04-02 14:14:04 +0300
committerRahul Tiwari <jprrahultiwari@gmail.com>2020-04-02 14:14:04 +0300
commit7b5de715c4ee63f6f7b904b48f53ac5be36c91c4 (patch)
treee1d2f5875dfe48be323f9a789fbe5d0634ea8130
parent3991c627b66f6f9019cf1cab6c93e12706e240b7 (diff)
Add RSS feed and improve Lighthouse audit score
-rw-r--r--README.md2
-rw-r--r--layouts/partials/footer.html2
-rw-r--r--layouts/partials/head.html1
-rw-r--r--static/css/syntax.scss69
4 files changed, 3 insertions, 71 deletions
diff --git a/README.md b/README.md
index eff7c6a..88cfd4e 100644
--- a/README.md
+++ b/README.md
@@ -8,9 +8,9 @@ Simple, text-focussed and minimal personal portfolio theme based on https://gith
* Social media links
* Markdown supported
* Easy to personalize
+* RSS feed
- TODO
- Dark mode
- - RSS feeds
## Installation
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index ef6e16b..1553b75 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -2,4 +2,6 @@
<div>
<h3><a href="{{ .Site.BaseURL }}posts">Back to all posts</a></h3>
</div>
+ <hr>
+ <p>Go <a href="{{ .Site.BaseURL }}/index.xml">here</a> for an RSS feed.</p>
</footer> \ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 0866c36..8df8052 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -3,7 +3,6 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
- <link rel="stylesheet" href="/css/syntax.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/fonts.css">
<!-- End stylesheets -->
diff --git a/static/css/syntax.scss b/static/css/syntax.scss
deleted file mode 100644
index 508d9a2..0000000
--- a/static/css/syntax.scss
+++ /dev/null
@@ -1,69 +0,0 @@
----
----
-
-.highlight {
-
- background: #fafafa;
-
- .hll { background-color: #fafafa; }
-
- .c { color: #998; } // Comment
- .err { color: #a61717; background-color: #e3d2d2 } // Error
- .k { font-weight: bold } // Keyword
- .o { font-weight: bold } // Operator
- .cm { color: #998; } // Comment.Multiline
- .cp { color: #999; font-weight: bold } // Comment.Preproc
- .c1 { color: #998; } // Comment.Single
- .cs { color: #999; font-weight: bold; } // Comment.Special
- .gd { color: #000; background-color: #fdd } // Generic.Deleted
- .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
- .ge { font-style: bold } // Generic.Emph
- .gr { color: #a00 } // Generic.Error
- .gh { color: #999 } // Generic.Heading
- .gi { color: #000; background-color: #dfd } // Generic.Inserted
- .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
- .go { color: #888 } // Generic.Output
- .gp { color: #555 } // Generic.Prompt
- .gs { font-weight: bold } // Generic.Strong
- .gu { color: #aaa } // Generic.Subheading
- .gt { color: #a00 } // Generic.Traceback
- .kc { font-weight: bold } // Keyword.Constant
- .kd { font-weight: bold } // Keyword.Declaration
- .kp { font-weight: bold } // Keyword.Pseudo
- .kr { font-weight: bold } // Keyword.Reserved
- .kt { color: #458; font-weight: bold } // Keyword.Type
- .m { color: #099 } // Literal.Number
- .s { color: #d14 } // Literal.String
- .na { color: #008080 } // Name.Attribute
- .nb { color: #0086B3 } // Name.Builtin
- .nc { color: #458; font-weight: bold } // Name.Class
- .no { color: #008080 } // Name.Constant
- .ni { color: #800080 } // Name.Entity
- .ne { color: #900; font-weight: bold } // Name.Exception
- .nf { color: #900; font-weight: bold } // Name.Function
- .nn { color: #555 } // Name.Namespace
- .nt { color: #000080 } // Name.Tag
- .nv { color: #008080 } // Name.Variable
- .ow { font-weight: bold } // Operator.Word
- .w { color: #bbb } // Text.Whitespace
- .mf { color: #099 } // Literal.Number.Float
- .mh { color: #099 } // Literal.Number.Hex
- .mi { color: #099 } // Literal.Number.Integer
- .mo { color: #099 } // Literal.Number.Oct
- .sb { color: #d14 } // Literal.String.Backtick
- .sc { color: #d14 } // Literal.String.Char
- .sd { color: #d14 } // Literal.String.Doc
- .s2 { color: #d14 } // Literal.String.Double
- .se { color: #d14 } // Literal.String.Escape
- .sh { color: #d14 } // Literal.String.Heredoc
- .si { color: #d14 } // Literal.String.Interpol
- .sx { color: #d14 } // Literal.String.Other
- .sr { color: #009926 } // Literal.String.Regex
- .s1 { color: #d14 } // Literal.String.Single
- .ss { color: #990073 } // Literal.String.Symbol
- .bp { color: #999 } // Name.Builtin.Pseudo
- .vc { color: #008080 } // Name.Variable.Class
- .vg { color: #008080 } // Name.Variable.Global
- .vi { color: #008080 } // Name.Variable.Instance
- .il { color: #099 } // Literal.Number.Integer.Long
-} \ No newline at end of file