Merge pull request #4553 from jekyll/site-improvements
Merge pull request 4553
This commit is contained in:
commit
8537e36936
3
Gemfile
3
Gemfile
|
@ -81,4 +81,7 @@ group :site do
|
|||
gem "html-proofer", "~> 2.0"
|
||||
end
|
||||
gem "jemoji"
|
||||
gem "jekyll-sitemap"
|
||||
gem "jekyll-seo-tag"
|
||||
gem "jekyll-avatar"
|
||||
end
|
||||
|
|
|
@ -19,7 +19,15 @@ name: Jekyll • Simple, blog-aware, static sites
|
|||
description: Transform your plain text into static websites and blogs
|
||||
url: http://jekyllrb.com
|
||||
|
||||
twitter:
|
||||
username: jekyllrb
|
||||
|
||||
logo: img/logo-2x.png
|
||||
|
||||
gems:
|
||||
- jekyll-feed
|
||||
- jekyll-redirect-from
|
||||
- jemoji
|
||||
- jekyll-sitemap
|
||||
- jekyll-seo-tag
|
||||
- jekyll-avatar
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
{{ post.date | date_to_string }}
|
||||
</span>
|
||||
<a href="https://github.com/{{ post.author }}" class="post-author">
|
||||
<img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }} avatar" width="24" height="24">
|
||||
{% avatar {{ post.author}} size=24 %}
|
||||
{{ post.author }}
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{{ page.title }}</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="generator" content="Jekyll v{{ jekyll.version }}">
|
||||
{% feed_meta %}
|
||||
|
@ -10,6 +9,7 @@
|
|||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
|
||||
<link rel="stylesheet" href="/css/screen.css">
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
{% seo %}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/js/html5shiv.min.js"></script>
|
||||
<script src="/js/respond.min.js"></script>
|
||||
|
|
|
@ -17,7 +17,7 @@ layout: news
|
|||
{{ page.date | date_to_string }}
|
||||
</span>
|
||||
<a href="https://github.com/{{ page.author }}" class="post-author">
|
||||
<img src="https://github.com/{{ page.author }}.png" class="avatar" alt="{{ page.author }} avatar" width="24" height="24">
|
||||
{% avatar {{ page.author}} size=24 %}
|
||||
{{ page.author }}
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
layout: default
|
||||
title: Jekyll • Simple, blog-aware, static sites
|
||||
overview: true
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in New Issue