-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
131 lines (118 loc) · 3.27 KB
/
links.html
File metadata and controls
131 lines (118 loc) · 3.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
layout: default
title: Links
description: Descobre a forma mais eficiente de conhecer todos os cantos da comunidade e de chegar ao conteúdo. Torna todos os caminhos mais rápidos quanto à tua pesquisa.
keywords: links, youtube, canal, github, código, blog, fundador, novidades, comunidade
permalink: /links/
sitemap: false
id: links
---
<main>
<header>
<a href="{{ site.baseurl }}" target="_blank" class="content">
<picture>
<source
srcset="{{ '/assets/img/logo.webp' | prepend: site.baseurl | prepend: site.url }}"
type="image/webp"
/>
<img
src="{{ '/assets/img/logo.jpg' | prepend: site.baseurl | prepend: site.url }}"
alt="Logo"
width="100"
height="100"
/>
</picture>
<div>
<h1>{{ site.community.name }}</h1>
<p>{{ site.description }}</p>
</div>
</a>
</header>
<section>
<ul>
{% for link in site.links %}
<a href="{{ link.url }}" target="_blank">
<li>
<span class="icon">
<i class="{{ link.icon }}"></i>
</span>
<span>{{ link.title }}</span>
</li>
</a>
{% endfor %}
</ul>
</section>
<ul class="social-networks">
<li>
<a
href="{{ site.author.url }}"
aria-label="Caffeine Algorithm - Nelson Silva"
target="_blank"
>
<i class="fas fa-user font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://www.youtube.com/c/{{ site.community.youtube_name }}"
aria-label="Caffeine Algorithm - YouTube"
target="_blank"
>
<i class="fab fa-youtube font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://github.com/{{ site.community.github }}"
aria-label="Caffeine Algorithm - GitHub"
target="_blank"
>
<i class="fab fa-github font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/company/{{ site.community.linkedin }}"
aria-label="Caffeine Algorithm - LinkedIn"
target="_blank"
>
<i class="fab fa-linkedin-in font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://www.instagram.com/{{ site.community.instagram }}"
aria-label="Caffeine Algorithm - Instagram"
target="_blank"
>
<i class="fab fa-instagram font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://facebook.com/{{ site.community.facebook }}"
aria-label="Caffeine Algorithm - Facebook"
target="_blank"
>
<i class="fab fa-facebook font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="https://www.twitch.tv/{{ site.community.twitch }}"
aria-label="Caffeine Algorithm - Twitch"
target="_blank"
>
<i class="fab fa-twitch font-14px gray-icon"></i>
</a>
</li>
<li>
<a
href="mailto:{{ site.community.email }}"
aria-label="Caffeine Algorithm - Constact"
>
<i class="far fa-envelope font-14px gray-icon"></i>
</a>
</li>
</ul>
</main>