diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2020-12-11 12:28:00 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2020-12-11 12:28:00 +0300 |
| commit | d4b99a8b2ee2dd81f507c6c6beac10b8eab93b92 (patch) | |
| tree | cb5a552c7bce73806f59b39e9195d31e655a30ff | |
| parent | 2d91f98aae123493bf3739f874cf42a73dbb643b (diff) | |
| download | aaoth.xyz-d4b99a8b2ee2dd81f507c6c6beac10b8eab93b92.tar.gz aaoth.xyz-d4b99a8b2ee2dd81f507c6c6beac10b8eab93b92.zip | |
add jekyll-feed plugin
| -rw-r--r-- | Gemfile | 4 | ||||
| -rw-r--r-- | _config.yml | 3 | ||||
| -rw-r--r-- | _layouts/default.html | 3 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,7 @@ source "https://rubygems.org" gem "jekyll" + +group :jekyll_plugins do + gem "jekyll-feed" +end diff --git a/_config.yml b/_config.yml index d762f21..5f59e82 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,8 @@ title: aaoth +plugins: + - jekyll-feed + # exclude non-site files exclude: - LICENSE diff --git a/_layouts/default.html b/_layouts/default.html index a1eeabb..0f35f14 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,7 +5,8 @@ <meta http-equiv="Content-Security-Policy" content="default-src 'self'"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ page.title }} - {{ site.title }}</title> - <link rel="stylesheet" href="/assets/css/style.css"> + {% feed_meta %} + <link rel="stylesheet" href="/assets/css/style.css"> <link rel="icon" href="/assets/img/favicon.ico" type="image/x-icon"> </head> <body> |
