-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patharticle.twig
34 lines (31 loc) · 1.98 KB
/
article.twig
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
{% embed '@cloudfour/objects/container/container.twig' with {
class: '_proto-asides-r1 o-container--prose o-container--pad',
content_class: 'o-rhythm',
align: align,
summary: summary,
open: open
} only %}
{% block content %}
<p>In the short run for those using a traditional web design process, we need to recognize that design doesn’t stop when something is handed off to developers. It continues until launch so designers can be involved in how the design is implemented in code.</p>
{% set aside_content -%}
<p>Or you could replace the traditional web design process with a process that incorporates in-browser mockups, but not every organization and designer can make that change. But if you’re interested in a process like that, stay tuned or… um… <a href="mailto:[email protected]">hire us</a>.</p>
{%- endset %}
<aside class="_c-aside {% if align %}_c-aside--align-{{align}}{% endif %}">
<div class="_c-aside__inner">
{% if summary %}
<details class="_c-aside__content"{% if open %} open{% endif %}>
<summary>{{summary}}</summary>
{{aside_content}}
</details>
{% else %}
<div class="_c-aside__content">
{{aside_content}}
</div>
{% endif %}
</div>
</aside>
<p>And in the same vein, there are development decisions happening before handoff. Developers should be involved throughout as well.</p>
<p>In the short run for those using a traditional web design process, we need to recognize that design doesn’t stop when something is handed off to developers. It continues until launch so designers can be involved in how the design is implemented in code.</p>
<p>In the short run for those using a traditional web design process, we need to recognize that design doesn’t stop when something is handed off to developers. It continues until launch so designers can be involved in how the design is implemented in code.</p>
{% endblock %}
{% endembed %}