mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2024-11-14 18:19:01 +00:00
66 lines
2.3 KiB
HTML
66 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html class="no-js" lang="en" >
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if page.title != nil %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
|
|
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
|
{% if page.tags %}<meta name="keywords" content="{{ page.tags | join: ', ' }}">{% endif %}
|
|
|
|
<link href="{{ site.url }}/atom.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
|
{% if site.owner.google_plus %}<link rel="author" href="{{ site.owner.google_plus }}?rel=author">{% endif %}
|
|
|
|
<!-- Style Sheets -->
|
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/app.css">
|
|
|
|
<!-- Fonts -->
|
|
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css' >
|
|
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" href="{{ site.url }}/favicon.ico" >
|
|
|
|
<!-- Modernizr -->
|
|
<script src="{{ site.url }}/assets/js/modernizr.js"></script>
|
|
|
|
</head>
|
|
<body itemscope itemtype="http://schema.org/WebPage">
|
|
<div class="contain-to-grid">
|
|
<nav class="top-bar" data-topbar>
|
|
<ul class="title-area">
|
|
<li class="name">
|
|
<h1><a href="{{ site.url }}/">{{ site.title | uppercase }}</a></h1>
|
|
</li>
|
|
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
|
|
</ul>
|
|
|
|
<section class="top-bar-section">
|
|
<!-- Left Nav Section -->
|
|
<ul class="left">
|
|
{% for item in site.data.menu %}
|
|
<li><a href="
|
|
{% if item.link contains 'http' %}
|
|
{{ item.link }}
|
|
{% else %}
|
|
{{ site.url }}{{ item.link }}
|
|
{% endif %}
|
|
">{{ item.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<!-- Right Nav Section -->
|
|
<ul class="right">
|
|
{% for social in site.data.social %}
|
|
<li class="social">
|
|
<a href="{{ social.link }}">
|
|
<i class="large icon-{{ social.name }}"></i>
|
|
<span>{{ social.name | capitalize}}</span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</nav>
|
|
</div>
|
|
|