Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
osp
tools.ethertoff
Commits
24468e00
Commit
24468e00
authored
Nov 13, 2019
by
gijs
Browse files
Only grid for the trajectories
parent
f4f8b65c
Changes
2
Hide whitespace changes
Inline
Side-by-side
generator/templates/static/styles.simple.css
View file @
24468e00
...
...
@@ -468,10 +468,13 @@ a.tag {
.trajectory-list
{
margin-bottom
:
3em
;
}
.trajectory-list--grid
{
display
:
grid
;
grid-template-columns
:
repeat
(
2
,
1
fr
);
grid-gap
:
1em
;
margin-bottom
:
3em
;
}
.trajectory-list
section
.trajectory--item
{
...
...
generator/templates/trajectories.html
View file @
24468e00
...
...
@@ -44,18 +44,20 @@
Critial considerations by the
<em>
Caveat
</em>
research team and 'dramaturgs' , and by invited guest writers put the research trajectories in different perspectives from their art historical, legal, sociological and other backgrounds.
</p>
{% endif %}
{% for trajectory in trajectories %}
<section
class=
"trajectory--item"
>
<h2
class=
"produser"
>
<a
href=
"{{ trajectory.produser.target.link }}"
>
{{ trajectory.produser }}
</a>
</h2>
{% if trajectory.summary %}
{{ trajectory.summary }}
{% else %}
{{ trajectory.content }}
{% endif %}
</section>
{% endfor %}
<section
class=
"trajectory-list--grid"
>
{% for trajectory in trajectories %}
<section
class=
"trajectory--item"
>
<h2
class=
"produser"
>
<a
href=
"{{ trajectory.produser.target.link }}"
>
{{ trajectory.produser }}
</a>
</h2>
{% if trajectory.summary %}
{{ trajectory.summary }}
{% else %}
{{ trajectory.content }}
{% endif %}
</section>
{% endfor %}
</section>
</section>
{% endfor %}
{% endblock %}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment