Merge pull request #7 from pflenker/dev-w3c
Feat: Make template w3c compliant
This commit is contained in:
commit
f5dd53403a
|
@ -1,16 +1,12 @@
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
|
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
|
||||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
|
||||||
|
|
||||||
{% if page.excerpt %}
|
{% if page.excerpt %}
|
||||||
<meta name="description" content="{{ page.excerpt| strip_html }}" />
|
|
||||||
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
|
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
|
||||||
{% elsif page.description %}
|
{% elsif page.description %}
|
||||||
<meta name="description" content="{{ page.description }}" />
|
|
||||||
<meta property="og:description" content="{{ page.description }}" />
|
<meta property="og:description" content="{{ page.description }}" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<meta name="description" content="{{ site.description }}">
|
|
||||||
<meta property="og:description" content="{{ site.description }}" />
|
<meta property="og:description" content="{{ site.description }}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<meta name="author" content="{{ site.name }}" />
|
<meta name="author" content="{{ site.name }}" />
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>{% if page.title and page.title != "" %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
||||||
{% seo %}
|
{% seo title=false %}
|
||||||
{% include meta.html %}
|
{% include meta.html %}
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/style.css" />
|
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/style.css" />
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
<div class="wrapper-masthead">
|
<div class="wrapper-masthead">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<header class="masthead clearfix">
|
<header class="masthead clearfix">
|
||||||
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.baseurl }}{{ site.avatar }}" /></a>
|
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.avatar }}" alt="{{ site.title }}" /></a>
|
||||||
|
|
||||||
<div class="site-info">
|
<div class="site-info">
|
||||||
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
|
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
|
||||||
|
|
Loading…
Reference in New Issue