Merge pull request #36 from JamesIves/master

Adds Meta Description Tag
This commit is contained in:
Brandon Rosage 2019-03-04 08:48:32 -06:00 committed by GitHub
commit e31471ef9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,17 @@
{% assign user = site.github.owner %}
{% if page.path contains '_posts' %}
{% assign meta_description = page.content | strip_html | strip_newlines | xml_escape | truncate: 300 %}
{% else %}
{% assign meta_description = user.bio | strip_html | strip_newlines | xml_escape | truncate: 300 %}
{% endif %}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="{{ meta_description }}" />
<title>{{ user.name }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="{{ "/assets/styles.css" | absolute_url }}" rel="stylesheet" type="text/css">