Add SEO tags to all pages
This commit is contained in:
parent
e95350e6c1
commit
7fb07fa372
20
_config.yml
20
_config.yml
@ -1,7 +1,24 @@
|
|||||||
|
title: Tyler Hallada
|
||||||
name: Tyler Hallada - Blog
|
name: Tyler Hallada - Blog
|
||||||
description: Musings on technology, literature, and interesting topics
|
description: Musings on technology, literature, and interesting topics
|
||||||
url: http://hallada.net/blog
|
author: thallada
|
||||||
|
url: http://www.hallada.net/
|
||||||
|
blog_url: http://www.hallada.net/blog
|
||||||
assets: http://hallada.net/assets/
|
assets: http://hallada.net/assets/
|
||||||
|
logo: /img/profile_icon_128x128.jpg
|
||||||
|
social:
|
||||||
|
name: Tyler Hallada
|
||||||
|
links:
|
||||||
|
- https://twitter.com/tyhallada
|
||||||
|
- https://www.facebook.com/tyhallada
|
||||||
|
- https://www.linkedin.com/in/thallada/
|
||||||
|
- https://github.com/thallada
|
||||||
|
defaults:
|
||||||
|
-
|
||||||
|
scope:
|
||||||
|
path: ""
|
||||||
|
values:
|
||||||
|
image: /img/profile_icon_128x128.jpg
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
kramdown:
|
kramdown:
|
||||||
syntax_highlighter: rouge
|
syntax_highlighter: rouge
|
||||||
@ -10,4 +27,5 @@ paginate_path: "blog/page:num"
|
|||||||
gems:
|
gems:
|
||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
- jekyll-paginate
|
- jekyll-paginate
|
||||||
|
- jekyll-seo-tag
|
||||||
include: [".well-known"]
|
include: [".well-known"]
|
||||||
|
@ -41,6 +41,8 @@
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
<!-- End Google Analytics -->
|
<!-- End Google Analytics -->
|
||||||
|
|
||||||
|
{% seo %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -48,6 +48,8 @@
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
<!-- End Google Analytics -->
|
<!-- End Google Analytics -->
|
||||||
|
|
||||||
|
{% seo %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<canvas id="magic"></canvas>
|
<canvas id="magic"></canvas>
|
||||||
|
2
feed.xml
2
feed.xml
@ -6,7 +6,7 @@ redirect_from: "/rss"
|
|||||||
<channel>
|
<channel>
|
||||||
<title>{{ site.name | xml_escape }}</title>
|
<title>{{ site.name | xml_escape }}</title>
|
||||||
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
|
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
|
||||||
<link>{{ site.url }}</link>
|
<link>{{ site.blog_url }}</link>
|
||||||
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
||||||
{% for post in site.posts limit:10 %}
|
{% for post in site.posts limit:10 %}
|
||||||
{% if post.hidden == null or post.hidden == false %}
|
{% if post.hidden == null or post.hidden == false %}
|
||||||
|
Loading…
Reference in New Issue
Block a user