-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (50 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: default
current: home
class: 'home-template'
navigation: True
---
<style>
</style>
<!-- < default -->
<!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template -->
<!-- The big featured header, it uses blog cover image as a BG if available -->
<header class="site-header outer" style="background-color: #ef002a;">
<!--
<header class="site-header outer {% if page.cover or site.cover %}" style="background-image: url({{ site.myurl }}{% if page.cover %}{{ page.cover }}{% elsif site.cover %}{{ site.cover }}{% endif %}) {% else %}no-cover{% endif %}">
-->
<div class="inner">
<div class="site-header-content">
<h1 class="site-title">
{% if site.logo %}
<div id="example" style="display: flex; flex-wrap: nowrap;">
<!--
<span id="A"><img src="http://placehold.it/350x150" /></span>
<span id="B"><img src="http://placehold.it/350x150" /></span>
<span id="C"><img src="http://placehold.it/350x150" /></span>
-->
<span id="A"><img class="site-logo t_image" style="position: relative; margin-right: 0.5em; top: -.35em; vertical-align: middle;" src="{{ site.myurl }}assets/images/t_circle.png" alt="{{ site.title }}"/>
</span>
<span id="B"><img class="site-logo" style="align-self: center; justify-self: center;position: relative; vertical-align: middle;" src="{{ site.myurl }}assets/images/hink_image.png" alt="{{ site.title }}"/>
</span>
<!--<img class="site-logo" src="{{ site.myurl }}{{ site.logo }}" alt="{{ site.title }}"/>-->
</div>
{% else %}
{{ site.title }}
{% endif %}
</h1>
<h2 class="site-description">{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}</h2>
</div>
{% include site-nav.html %}
</div>
</header>
<!-- The main content area -->
<main id="site-main" class="site-main outer" role="main">
<div class="inner">
<div class="post-feed">
<!-- The tag below includes the markup for each post - partials/post-card.hbs -->
{% include post-card.html %}
</div>
</div>
</main>