-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
129 lines (123 loc) · 4.62 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
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
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="generated" content="{{ site.time }}">
<title>Hlídač státu - GitHub</title>
<link rel="stylesheet" href="css/bootstrap.min.css"> <!-- custom build, grid only -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css">
<!-- Favicon -->
<link rel="icon" type="image/png" href="img/i/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/i/favicon-16x16.png" sizes="16x16" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="img/i/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/i/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/i/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/i/apple-touch-icon-152x152.png" />
<style>
#masthead {
background-image: url('img/bg.png');
background-size: cover;
background-position: 50% 0;
background-repeat: no-repeat;
padding: 5em 0 5em 0;
margin-bottom: 3em;
text-align: center;
color: white;
height: 450px;
}
#masthead a:hover { color: white; }
h1 { text-shadow: 0 1px 1px rgba(0,0,0,0.5); }
#logo {
position: absolute;
left: 50px;
top: 30px;
width: 110px;
height: auto;
}
.intro {
font-size: 130%;
margin: 0.7em 0 0.7em 0;
}
body {
font-size: 160%;
padding: 0;
margin: 0;
}
.repository {
margin-bottom: 0.7em;
}
.category {
margin-bottom: 1em;
}
h4 { margin: 0; }
h2 { margin: 0.5em 0 0.5em 0; }
.repository h4 {
margin-bottom: 0.1em;
font-size: 130%;
}
.desc { margin-top: 0.2em; }
.stats div {
display: inline;
margin-right: 1em;
}
a {
color: black;
text-decoration: none;
}
.intro a {
text-decoration: underline;
}
a:hover h4 {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="masthead">
<a href="https://www.hlidacstatu.cz/" title="hlidacstatu.cz">
<img src="img/hlidacstatu.png" id="logo">
</a>
</div>
<div class="container">
<div class="category row">
<div class="col-xs-12">
<h1>Hlídač státu</h1>
</div>
<div class="intro">
Cílem Hlídač státu z.ú. není pouze kritizovat a poukazovat na zoufalý stav fungování českého státu, ale zejména mu pomoci se změnit,
seznámit ho s trendy a principy moderního státu, nastavit základní principy digitalizace služeb a procesů státu a být aktivně této
změně nápomocni.
</div>
<div class="intro">
Další informace pro vývojáře jsou k dispozici na stránce <a href="https://www.hlidacstatu.cz/API">API</a> případně se s námi můžete
spojit na <a href="https://join.slack.com/t/hlidacstatu/shared_invite/enQtNDEyNjgxNzM3NTQxLTZiMzVmZmE4ZGQ0NzdiZDY2MTk3ZjA0OWI2ZmI3NGNjMjRmZjlhZDg0ODc1YmUzMTM0ZDVjYTQ4MmIxOGFiYWM">Slacku</a>.
</div>
</div>
{% for repo_category in site.selected_repositories %}
<div class="category row">
<div class="col-xs-12">
<h2>{{ repo_category[0] }}</h2>
</div>
{% for repo_name in repo_category[1] %} {% for repo in site.github.public_repositories %} {% if repo_name == repo.name %}
<a class="repository col-xs-12 col-sm-6 col-md-4" href="{{ repo.html_url }}">
<h4>{{ repo.name }}</h4>
<div class="stats">
<div><span class="octicon octicon-star"></span>{{ repo.stargazers_count }}</div>
<div><span class="octicon octicon-repo-forked"></span>{{ repo.forks_count }}</div>
</div>
<div class="desc">
{{ repo.description }}
</div>
</a>
{% endif %} {% endfor %} {% endfor %}
</div>
{% endfor %}
</div>
</body>
</html>