|
| 1 | +<head> |
| 2 | + <meta charset="utf-8"> |
| 3 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 4 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 5 | + <meta content="{{ site.title }}" property="og:site_name"> |
| 6 | +{% if page.title %} |
| 7 | + <meta content="{{ page.title }}" property="og:title"> |
| 8 | +{% else %} |
| 9 | + <meta content="{{ site.title }}" property="og:title"> |
| 10 | +{% endif %} |
| 11 | +{% if page.title %} |
| 12 | + <meta content="article" property="og:type"> |
| 13 | +{% else %} |
| 14 | + <meta content="website" property="og:type"> |
| 15 | +{% endif %} |
| 16 | +{% if page.description %} |
| 17 | + <meta content="{{ page.description }}" property="og:description"> |
| 18 | +{% else %} |
| 19 | + <meta content="{{ site.description }}" property="og:description"> |
| 20 | +{% endif %} |
| 21 | +{% if page.url %} |
| 22 | + <meta content="{{ site.url }}{{ page.url }}" property="og:url"> |
| 23 | +{% endif %} |
| 24 | +{% if page.date %} |
| 25 | + <meta content="{{ page.date | date_to_xmlschema }}" property="article:published_time"> |
| 26 | + <meta content="{{ site.url }}/about/" property="article:author"> |
| 27 | +{% endif %} |
| 28 | + |
| 29 | + <meta property="og:image" content=""> |
| 30 | + |
| 31 | +{% if page.categories %} |
| 32 | + {% for category in page.categories limit:1 %} |
| 33 | + <meta content="{{ category }}" property="article:section"> |
| 34 | + {% endfor %} |
| 35 | +{% endif %} |
| 36 | +{% if page.tags %} |
| 37 | + {% for tag in page.tags %} |
| 38 | + <meta content="{{ tag }}" property="article:tag"> |
| 39 | + {% endfor %} |
| 40 | +{% endif %} |
| 41 | + <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title> |
| 42 | + <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}"> |
| 43 | +<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> |
| 44 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> |
| 45 | + <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}"> |
| 46 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> |
| 47 | + |
| 48 | + <link href='https://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'> |
| 49 | + <link href='https://fonts.googleapis.com/css?family=Fira+Mono' rel='stylesheet' type='text/css'> |
| 50 | + <link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'> |
| 51 | + <link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,200,300,500,600,700,900' rel='stylesheet' type='text/css'> |
| 52 | + <link href='https://fonts.googleapis.com/css?family=Gentium+Basic:400,700' rel='stylesheet' type='text/css'> |
| 53 | + <link href='https://fonts.googleapis.com/css?family=Alegreya:400,400italic,700' rel='stylesheet' type='text/css'> |
| 54 | + <link href='https://fonts.googleapis.com/css?family=Lora:400,400italic,700' rel='stylesheet' type='text/css'> |
| 55 | + <link href='https://fonts.googleapis.com/css?family=Fira+Sans:400,300,500,700' rel='stylesheet' type='text/css'> |
| 56 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> |
| 57 | + <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'> |
| 58 | + <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> |
| 59 | + <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-hQpvDQiCJaD2H465dQfA717v7lu5qHWtDbWNPvaTJ0ID5xnPUlVXnKzq7b8YUkbN" crossorigin="anonymous"> |
| 60 | + <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> |
| 61 | + <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}"> |
| 62 | +</head> |
0 commit comments