-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
79 lines (79 loc) · 3.16 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
---
# uses jekyll.
---
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8" />
<title>Notes ikdoeict</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#6abed8">
<meta name="apple-mobile-web-app-title" content="ikdoeict notes">
<meta name="application-name" content="ikdoeict notes">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<div class="banner">
<p><strong>help out!</strong> I'm graduating and thus won't be needing this anymore</p>
<p>Become a <a href="https://github.com/ikdoeict-notes" target="_blank" rel="noreferrer">contributor</a> now!</p>
<p>If you need any guidance, <a href="http://m.me/haroenv" target="_blank" rel="noreferrer">message</a> me</p>
</div>
<h1><a href="https://github.com/ikdoeict-notes">ikdoeict notes</a></h1>
<p>Alle notities handig voor de richting elektronica-ict aan Odisee Gent</p>
<section class="repos">
<h2>De vakken:</h2>
<div class="search">
<input type="search" placeholder="zoek een vak">
</div>
<div class="repos--list">
{% assign repos = site.github.public_repositories | sort: 'pushed_at' | reverse %}
{% for repo in repos %}
{% unless repo.fork %}
<article>
<h2><a href="{{ repo.html_url }}">{{repo.name}}</a></h2>
{% if repo.homepage.size > 0 %}
<a href="{{repo.homepage}}">site</a>
{% elsif repo.has_pages %}
<a href="https://ikdoeict.github.io/{{ repo.name }}">site</a>
{% endif %}
<p class="main">{{ repo.description}}</p>
<p class="tiny">aangepast op {{repo.pushed_at | date: "%F %R %Z"}}</p>
</article>
{% endunless %}
{% endfor %}
</div>
</section>
<footer>
<a href="http://onderwijsaanbod.odisee.be/opleidingen/n/SC_51531545.htm#bl=all">Onderwijsaanbod</a>
<p>Originele versie: <a href="https://github.com/haroenv/notes-eoict">https://github.com/haroenv/notes-eoict</a></p>
<p>Vind ons op <a href="https://github.com/ikdoeict-notes">github.com/ikdoeict-notes</a></p>
<p>Mogelijk gemaakt door: </p>
<div class="contributors">
{% for user in site.data.contributors %}
{% if user.url %}
<a href="{{user.url}}" class="image">
{% endif %}
<img src="{{user.avatar}}" alt="{{user.name}}" title="{{user.name}}">
{% if user.url %}
</a>
{% endif %}
{% endfor %}
</div>
</footer>
<script src="https://haroen.me/holmes/js/holmes.js"></script>
<script>
holmes({
input: '.search input',
find: '.repos--list article',
placeholder: 'geen vakken gevonden. <a href="https://github.com/ikdoeict-notes">Voeg er toe!</a>',
});
</script>
</body>
</html>