mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 21:24:20 +01:00
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>{% if page.title %} {{ page.title }} {% else %} {{ site.name }} {% endif %}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- syntax highlighting CSS -->
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css">
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="{{ site.baseurl }}/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Fonts -->
|
|
<link href="//fonts.googleapis.com/css?family=Roboto+Condensed:400,300italic,300,400italic,700&subset=latin,latin-ext" rel="stylesheet" type="text/css">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-sm-3">
|
|
<img id="about" src="{{ site.baseurl }}/img/avatar.jpg" height="75px" width="75px" />
|
|
<h1 class="author-name">{{ site.name }}</h1>
|
|
{% if site.about %}
|
|
<div id="about">
|
|
{{ site.about }}
|
|
</div>
|
|
{% endif %}
|
|
<hr />
|
|
<strong>Navigation</strong><br />
|
|
» <a href="{{ site.baseurl }}/">home</a> <br />
|
|
{% for i in site.urls %}
|
|
» <a class="about" href="{{ i.url }}">{{ i.text }}</a><br />
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="col-sm-8 col-offset-1">
|
|
|
|
{{ content }}
|
|
|
|
<footer>
|
|
© {{ site.name }}
|
|
{% if site.github %}
|
|
- <a href="{{ site.github }}">{{ site.github }}</a> - Powered by Jekyll.
|
|
{% endif %}
|
|
</footer>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
|
<script src="js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|