mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
Merge branch 'master' of https://github.com/wona/wona.github.com
This commit is contained in:
@ -1,16 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
|
||||
<head>
|
||||
|
||||
{% assign title = site.name %}
|
||||
{% if page.title %}
|
||||
{% assign title = page.title + " — " + title %}
|
||||
{% endif %}
|
||||
|
||||
{% if page.excerpt %}
|
||||
{% assign desc = page.excerpt %}
|
||||
{% else %}
|
||||
{% assign desc = site.description %}
|
||||
{% endif %}
|
||||
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
{% if page.title %}
|
||||
{{ page.title }} —
|
||||
{% endif %}
|
||||
{{ site.name }}
|
||||
{{ title }}
|
||||
</title>
|
||||
|
||||
<!-- Open Graph protocol -->
|
||||
<meta property="og:site_name" content="Watch Out! News Agency" />
|
||||
<meta property="og:title" content="{{ title }}" />
|
||||
<meta property="og:type" content="{% if page.excerpt %}article{% else %}website{% endif %}" />
|
||||
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
|
||||
<meta property="og:image" content="{{ site.url }}/images/{% if page.image %}posts/{{page.image}}{% else %}logo.png{% endif %}" />
|
||||
<meta property="og:description" content="{{ desc }}" />
|
||||
<!-- Open Graph protocol -->
|
||||
|
||||
<meta name="author" content="{{ site.name }}" />
|
||||
<meta name="description" content="{{ site.description }}" />
|
||||
<meta name="description" content="{{ desc }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta property="og:image" content="/images/posts/main-building.jpg">
|
||||
<link rel="alternate" type="application/rss+xml" href="/atom.xml" />
|
||||
@ -20,4 +38,4 @@
|
||||
<link rel="stylesheet" href="/css/base.css" type="text/css" media="screen, projection" />
|
||||
<script type="text/javascript" src="/js/masonry.min.js"></script>
|
||||
<script type="text/javascript" src="/js/application.js"></script>
|
||||
</head>
|
||||
</head>
|
||||
|
||||
Reference in New Issue
Block a user