-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (62 loc) · 2.68 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
overtitle: Um projeto coLAB
title: Combate à Desinformação e ao Discurso de Ódio
description: O DDoS Lab tem como objetivo mapear redes de influência e identificar dinâmicas de ação política que estejam associadas à disseminação de desinformação e discurso de ódio, comportamentos inautênticos e agendas antidemocráticas.
featured_image: /images/social.jpg
---
<div class="page-home">
{% if site.data.settings.hero_settings.background_image %}
<img src="{{ site.data.settings.hero_settings.background_image | relative_url }}" class="hero__background" draggable="false">
{% endif %}
<section class="hero">
<div class="wrap grid">
<div class="title">
<p class="subtitle">{{ page.overtitle }}</p>
<h1>{{ page.title }}</h1>
</div>
<p class="intro subtitle--light">
{{ page.description }}
<a href="#" class="hero__cta button--fill contact-trigger js-contact">Fale Conosco</a>
</p>
</div>
</section>
<section class="listing">
<div class="wrap">
{% for project in site.projects reversed %}
{% if project.accent_color %}{% capture accent_color %}{{ project.accent_color }}{% endcapture %}{% endif %}
<article class="project__preview">
<h3 class="project__title"><a href="{{ project.url | relative_url }}" style="--accent: {{ accent_color }}">{{ project.title }}</a></h3>
<div class="project__images owl-carousel" style="--accent: {{ accent_color }}">
{% for image in project.gallery_images %}
<a href="{{ project.url | relative_url }}"><img src="{{ '/images/projects/' | relative_url}}{{ image }}" alt="" class="project__image"></a>
{% endfor %}
</div>
<div class="project__content grid" style="border-color: {{ accent_color }}">
<p class="project__subtitle subtitle--light">{{ project.subtitle }}</p>
<p class="project__description --small">
{{ project.description }}
<a href="{{ project.url | relative_url }}" class="project__link button--text --right"
style="color: {{ accent_color }}; --color-var: {{ accent_color }}">Ver Estudo Completo</a>
</p>
</div>
</article>
{% endfor %}
</div>
</section>
{% include section__about.html %}
<section class="recent-posts">
<div class="wrap grid">
<header class="recent-posts__header">
<h4>Artigos Publicados</h4>
<a href="{{ '/blog' | relative_url }}" class="action button--text--accent --right">Ver Artigos</a>
</header>
<div class="recent-posts__list grid">
{% for post in site.posts limit: 3 %}
{% include component__post-preview.html %}
{% endfor %}
</div>
<a href="{{ '/blog' | relative_url }}" class="action-bottom button--text--accent --right">Ver Artigos</a>
</div>
</section>
</div>