-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
58 lines (57 loc) · 2.34 KB
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
---
layout: default
title: Home
---
<div class="flex justify-center w-full">
<div class="container py-16">
<div class="flex px-16">
<div class="w-1/2">
<p class="text-2xl">
Estamos usando o github de forma experimental para construir uma gestão de tecnologia mais aberta,
participativa, através da colaboração ativa dos integrantes
</p>
</div>
<div class="w-1/2 pl-12 flex items-center justify-center text-xl">
<div>
<p><span class="mdi mdi-map-marker"></span> Fortaleza, Ceará, Brasil</p>
<p><span class="mdi mdi-link"></span><a href="https://www.esp.ce.gov.br/" target="_blank">
https://esp.ce.gov.br</a></p>
<p><span class="mdi mdi-email"></span> nutic@esp.ce.gov.br</p>
</div>
</div>
</div>
</div>
</div>
<div class="bg-gray-100 flex flex-col items-center w-full py-16">
<div class="container">
<div class="mb-16">
<p class="text-4xl text-orange-700 font-bold">
Laboratórios
</p>
</div>
{% assign sorted = site.labs | sort: 'ordem' %}
<div class="mb-16 flex flex-wrap justify-center w-full">
{% for lab in sorted %}
<div class="px-4 py-2 border border-orange-700 text-orange-700 rounded mx-4 hover:bg-orange-700 hover:text-white hover:font-bold">
<a href="#{{ lab.name }}"> {{lab.name }} </a>
</div>
{% endfor %}
</div>
<div class="container">
{% for lab in sorted %}
<div id="{{ lab.name }}" class="w- full my-16 border-2 border-orange-700 rounded-lg shadow h-56 flex justify-between items-center">
<div class="w-full sm:w-1/4 px-5 bg-orange-700 h-full flex items-center">
<p class="font-bold text-2xl sm:text-4xl text-right w-full text-white">
{{ lab.name }}
</p>
</div>
<div class="w-full sm:w-3/4 pl-5 text-lg md:text-2xl">
<p>
{{ lab.resumo | markdownify }}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>