2021-04-16 04:57:43 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Web crawler and search indexing meta -->
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
<meta name="author" content="admin@allaroundhere.org"/>
|
|
|
|
<meta name="description" content="Some of the best places are all around here"/>
|
|
|
|
<meta name="robots" content="index follow"/>
|
|
|
|
<meta
|
|
|
|
name="keywords"
|
|
|
|
content="travel photography explore exploration urbex urban nature all around here local museum history historical society"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Facebook integration meta -->
|
|
|
|
<meta property="og:title" content="All Around Here"/>
|
|
|
|
<meta property="og:url" content="https://allaroundhere.org/explore/"/>
|
|
|
|
<meta property='og:site_name' content="All Around Here"/>
|
|
|
|
<meta property="og:type" content="website"/>
|
|
|
|
<meta property='og:locale' content="en_US"/>
|
|
|
|
<meta property="og:image" content="https://cdn.enp.one/img/backgrounds/cl-photo-boston.jpg"/>
|
|
|
|
<meta property='og:description' content="Some of the best places are all around here"/>
|
|
|
|
|
|
|
|
<!-- Twitter integration meta -->
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="https://allaroundhere.org/explore/">
|
|
|
|
<meta name="twitter:title" content="All Around Here">
|
|
|
|
<meta name="twitter:description" content="Some of the best places are all around here">
|
|
|
|
<meta name="twitter:image" content="https://cdn.enp.one/img/backgrounds/cl-photo-boston.jpg">
|
|
|
|
<meta name="twitter:image:alt" content="All Around Here">
|
|
|
|
|
2021-04-22 20:36:35 +00:00
|
|
|
<title>{{ config.title }}</title>
|
2021-04-16 04:57:43 +00:00
|
|
|
<link rel="shortcut icon" href="https://cdn.enp.one/img/logos/aah-b-sm.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.enp.one/img/logos/aah-b-sm.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn.enp.one/img/logos/aah-b-sm.png" >
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn.enp.one/img/logos/aah-b-sm.png">
|
2021-04-22 20:36:35 +00:00
|
|
|
{% for style in config.assets.css %}
|
|
|
|
<link rel="stylesheet" href="http{{ 's' if config.https else '' }}://{{ config.site }}/{{ style }}"/>
|
|
|
|
{% endfor %}
|
2021-04-16 04:57:43 +00:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
|
|
|
|
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
|
|
|
|
crossorigin="anonymous"
|
|
|
|
/>
|
2021-04-22 20:36:35 +00:00
|
|
|
{% for script in config.assets.js %}
|
|
|
|
<script type="text/javascript" src="http{{ 's' if config.https else '' }}://{{ config.site }}/{{ script }}"></script>
|
|
|
|
{% endfor %}
|
2021-04-16 04:57:43 +00:00
|
|
|
<noscript><style>.nojs { display: none; }</style></noscript>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="background-image"><div class="overlay"></div></div>
|
|
|
|
|
|
|
|
<div id="preloader" class="nojs"><div class="spinner"><div></div></div></div>
|
|
|
|
|
|
|
|
<div id="toggle-description" class="nojs"><i class="fas fa-paragraph"></i></div>
|
|
|
|
|
|
|
|
<div id="content">
|
2021-04-22 20:36:35 +00:00
|
|
|
<div id="header"><h1>{{ config.title }}</h1></div>
|
2021-04-16 04:57:43 +00:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for post in config.posts %}
|
|
|
|
<li class="article">
|
|
|
|
<div class="article-banner" style="background-image: url('{{ post.banner }}');">
|
2021-04-22 20:36:35 +00:00
|
|
|
<a href="http{{ 's' if config.https else '' }}://{{ config.site }}/{{ config.path.output }}/{{ post.slug }}/" class="article-content">
|
2021-04-16 04:57:43 +00:00
|
|
|
<h2>{{ post.title }}</h2>
|
|
|
|
<p>
|
|
|
|
<i class="fas fa-map-marker-alt"></i>{{ post.location }}
|
|
|
|
<i class="far fa-calendar-alt"></i>{{ post.date }}
|
|
|
|
</p>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|