-
Notifications
You must be signed in to change notification settings - Fork 1
/
content-design.html
60 lines (53 loc) · 2.32 KB
/
content-design.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
---
title: Content design
h1: Content design
permalink: /portfolio/content-design/
---
<section class="container mb-4">
<p>
What is content design? In a nutshell, it’s structuring content in a way that’s helpful for people. For me, that means handling content-rich layout design (think newsletters, dashboards, landing pages, presentations and brochures) and strategic content redesign (starting fresh with your website or CRM). Browse the case studies below — examples make things clearer, a good design principle for portfolio pages.
</p>
</section>
{% for item in site.data.content-design %}
{% assign mod2 = forloop.index | modulo: 2 %}
{% if mod2 == 1 %}
<section class="container-fluid pl-lg-0 bg-light-gray">
{% else %}
<section class="container-fluid pr-lg-0">
{% endif %}
<div class="row row-eq-height no-gutters">
{% if mod2 == 1 %}
<div class="col-lg-7 order-lg-2 p-4">
{% else %}
<div class="col-lg-7 offset-lg-1 p-4">
{% endif %}
<h3 class="underline pr-3 pt-4" id="{{ item.title | slugify }}">{{ item.title }}</h3>
<p>{{ item.text }}</p>
<ul>
{% if item.client %}
<li><strong>Client:</strong> {{ item.client }}</li>
{% endif %}
{% if item.methodology %}
<li><strong>Methodology:</strong> {{ item.methodology }}</li>
{% endif %}
{% if item.results %}
<li><strong>Results:</strong> {{ item.results }}</li>
{% endif %}
{% if item.process %}
<li><strong>Process:</strong> {{ item.process }}</li>
{% endif %}
{% if item.tools %}
<li><strong>Tools:</strong> {{ item.tools }}</li>
{% endif %}
</ul>
</div>
{% if mod2 == 1 %}
<div class="col-lg-4 order-lg-1 px-0 text-center">
{% else %}
<div class="col-lg-4 px-0 text-center">
{% endif %}
<iframe src="//www.slideshare.net/slideshow/embed_code/key/{{ item.slideshare }}" width="668" height="100%" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; max-width: 100%; min-height: 400px;" allowfullscreen> </iframe>
</div>
</div>
</section>
{% endfor %}