Adds Description Tag

This commit is contained in:
James Ives 2019-02-24 19:02:52 -05:00
parent 7b775d501c
commit 70e0a6a01a

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 | truncate: 300 %}
{% else %}
{% assign meta_description = user.bio | strip_html | strip_newlines | 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">