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