-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.62 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
---
layout: default
---
<div class="page-container">
<div class="page-title-contain">
<h1 class="page-title">Eyes Wide Open</h1>
<span class="line"></span>
<p class="page-description">A Traveling Journal -By James Weber</p>
</div>
<div class="page-intro"></div>
<div class="small-about">
<h3>Hi</h3>
<p>My name is James and I've lived abroad for many years now. I started these journals/letters/newsletters as a way of keeping in touch with my family and friends. They are now my way of keeping in touch with the world. If you'd like to know more about me, check out <a class="link about-color" href="/blogger/about.html">here</a></p>
<p>Wet your whistle with these first few posts and feel free to poke around <a class="link about-color-secondary" href="/blogger/past-posts.html">here</a> all the way to the my first letter home many years ago. Thanks for the taking the time to stop by </p>
</div>
<div class="post-list-container-outer-first">
{% for post in site.posts limit: 1 %}
<a class="post-list-container-cover" href="{{ post.url | prepend: site.baseurl }}"></a>
<a class="post-list-container-inner" href="{{ post.url | prepend: site.baseurl }}">
<div class="img-small-post-container">
<img class="post-image-small" src="assets/img/posts/{{post.image}}" alt="">
</div>
<div class="small-post-description-container">
<h2 class="link small-post-title titleh2">{{ post.title }}</h2>
<time class="link post-date">{{ post.date | date: "%b %-d, %Y" }}</time>
<p class="link small-meta-description">{{ post.meta-description }}</p>
<p class="new">*NEW*</p>
</div>
</a>
{% endfor %}
</div>
<div class="post-list-container-outer-second">
{% for post in site.posts offset: 1 limit: 6 %}
<a class="post-list-container-cover" href="{{ post.url | prepend: site.baseurl }}"></a>
<a class="post-list-container-inner" href="{{ post.url | prepend: site.baseurl }}">
<div class="img-small-post-container">
<img class="post-image-small" src="assets/img/posts/{{post.image}}" alt="">
</div>
<div class="small-post-description-container">
<h2 class="link small-post-title titleh2">{{ post.title }}</h2>
<time class="link post-date">{{ post.date | date: "%b %-d, %Y" }}</time>
<p class="link small-meta-description">{{ post.meta-description }}</p>
</div>
</a>
{% endfor %}
</div>
<a class="link home-button" href="/blogger/past-posts.html">Check out even more posts</a>
</div>