-
Notifications
You must be signed in to change notification settings - Fork 1
/
writing.html
42 lines (40 loc) · 1.6 KB
/
writing.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
---
title: Writing Portfolio
h1: Writing portfolio
description: I’ve written about travel, finance, environmental issues and more for dozens of regional and international publications. These are a few of my favorites.
---
<section class="container mb-4">
<p>
I’ve written about travel, finance, environmental issues and more for a range of publications, from in-flight
magazines to online listicles. Below are a few of my favorites.
</p>
<p>
Looking for my marketing writing and editing work? <a href="/portfolio/copywriting-seo/">That’s another page</a>.
</p>
</section>
{% for item in site.data.writing %}
<section class="container text-center mb-5">
<h2 class="mx-auto line-title mb-5" id="{{ item.category | downcase | url_encode }}">{{ item.category }}</h2>
<div class="row row-eq-height">
{% for article in item.articles %}
{% assign mod3 = forloop.index | modulo: 3 %}
{% if forloop.index !=1 and mod3 == 1 %}</div>
<div class="row row-eq-height">{% endif %}
<div class="col-lg-4 mb-4">
<div class="card h-100">
<a href="{{ article.link }}" rel="noopener noreferrer" target="_blank">
<div class="thumbnail">
<img class="card-img-top link-img" src="{{ article.image }}"
alt="{{ article.title }} - {{ article.publisher }}">
</div>
<div class="card-body">
<h3 class="h4">{{ article.title }}</h3>
<p class="card-text">{{ article.publisher }}</p>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</section>
{% endfor %}