-
Notifications
You must be signed in to change notification settings - Fork 1
/
editing.html
38 lines (36 loc) · 1.39 KB
/
editing.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
---
title: Editing
h1: Editing
permalink: /portfolio/editing/
---
<section class="container mb-4">
<p>
I started as a newspaper section editor, where I internalized AP style and the ability to recognize extra spaces between words. Since then, I’ve developed style guides, helped businesses hone their brand voice, hired and managed writers and, of course, edited — thousands of articles, web pages and proofs.
</p>
<p>
You can check out some of the long-form content I’ve edited below, covering topics like franchising, debt management, relationship marketing and Little Italy.
</p>
</section>
<section class="container text-center mb-4">
<div class="row row-eq-height">
{% for item in site.data.editing %}
{% 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="{{ item.link }}" rel="noopener noreferrer" target="_blank">
<div class="thumbnail">
<img class="card-img-top link-img" src="{{ item.image }}"
alt="{{ item.client }} - {{ item.title }}">
</div>
<div class="card-body">
<h3 class="h4">{{ item.client }}</h3>
<p class="card-text">{{ item.title }}</p>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</section>