-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwriting.html
More file actions
53 lines (51 loc) · 1.63 KB
/
writing.html
File metadata and controls
53 lines (51 loc) · 1.63 KB
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
---
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 %}