forked from crodewig/crodewig.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
135 lines (133 loc) · 3.16 KB
/
blog.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
---
title: Blog
h1: Blog
redirect_from:
- /agathas/
- /alabama-shakespeare-garden/
- /amaluna/
- /amelies-french-bakery/
- /arabian-nights/
- /atlanta-fringe-festival/
- /atlanta-history-center/
- /bamboo-farm/
- /biblical-history-center/
- /blairsville-georgia/
- /bodies-exhibit-at-atlantic-station/
- /burlington-ontario/
- /callanwolde/
- /callaway-gardens/
- /callaway-in-winter/
- /candytopia/
- /chehaw/
- /cherry-blossom-festival/
- /chewacla/
- /chicago-gardens/
- /chicago/
- /christmas-in-paris/
- /cnn-studio-tour/
- /coca-cola/
- /columbia-county-ballet/
- /columbus-botanical-garden/
- /cooper-creek/
- /dahlonega-food/
- /dahlonega-waterfalls/
- /dahlonega/
- /davis-arboretum/
- /disney-lights/
- /dothan-garden/
- /eiffel-tower/
- /epcot/
- /eufaula/
- /faulkner-university/
- /fdr-state-park/
- /fernbank/
- /festival-of-trees-in-marietta-georgia/
- /florence-marina-state-park/
- /follow-the-shepherds-christmas/
- /fort-frederica/
- /fort-gordon/
- /freemans-mill-park/
- /futuroscope/
- /gainesville-garden/
- /gatlinburg/
- /georgia-aquarium/
- /gibbs-gardens-in-autumn/
- /gloatl/
- /great-smokies/
- /inman-park-dance/
- /jekyll-island-nature/
- /jekyll-island/
- /leu-gardens/
- /little-river-canyon/
- /london/
- /lookout-mountain/
- /lyon/
- /mall-of-america/
- /margaret-mitchell-house/
- /metro-atl-holiday-pop-ups/
- /minneapolis-saint-paul/
- /mirror-maze/
- /mont-saint-michel/
- /monterey/
- /montgomery-zoo/
- /nashville-tennessee-for-christmas/
- /noahs-ark/
- /oakhurst-farm/
- /okefenokee/
- /oxbow-meadows/
- /parco-gregoriana/
- /paris-on-ponce/
- /partnachklamm/
- /port-columbus/
- /portland-oregon/
- /reflection-riding/
- /ren-fest/
- /residenz/
- /robin-lake-beach/
- /rock-ranch/
- /sacred-heart/
- /san-francisco/
- /san-jose-rose-garden/
- /savannah-botanical-gardens/
- /schloss-nymphenburg/
- /silver-springs/
- /six-flags-white-water/
- /springer-opera-house/
- /tallulah-gorge/
- /toruk/
- /tours/
- /tybee-island/
- /unicoi/
- /universal-orlando/
- /varekai/
- /vaudeville-cafe/
- /whitewater-rafting/
- /wild-animal-safari/
- /winchester/
- /winter-wonderland/
- /zoo-atlanta/
---
<section class="container">
{% for post in site.posts %}
<a href="{{ post.url }}">
<div class="row slat pb-3">
<div class="col-lg-4 mx-auto p-0">
<div class="thumbnail my-auto">
<img class="blog-featured-img" src="{{ post.image }}" alt="{{ post.title }}">
</div>
</div>
<div class="col-lg-8 pl-lg-5">
<h2 class="pt-4">{{ post.title }}</h2>
<footer>
<p class="lighter-gray smaller-text">
<time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%B %-d, %Y" }}</time><br>
</p>
</footer>
<p>
{{ post.excerpt | strip_html | truncatewords: 20 }}
</p>
</div>
</div>
</a>
{% endfor %}
</section>