-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (107 loc) · 5.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>converter.dmetzler1988.io</title>
<link rel="shortcut icon" type="image/x-icon" href="./public/images/favicon.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./public/main.css?v=20210321">
</head>
<body class="index">
<header class="header">
<div class="container">
<div class="header--top">
<div class="row">
<div class="col s12 m10 offset-m1">
<h1>Converter</h1>
<h2>Converts various things</h2>
<a href="#" data-target="slide-out" class="top-nav sidenav-trigger full hide-on-large-only">
<i class="material-icons">menu</i>
</a>
</div>
</div>
</div>
</div>
<ul class="sidenav sidenav-fixed sticky-footer--wrapper" id="slide-out">
<li class="logo">
<a href="/" target="_self">
<img src="public/images/logo.png" alt="converter.dmetzler.io"/>
</a>
</li>
<li><div class="divider"></div></li>
<li class="bold active">
<a href="/" class="waves-effect waves-teal">About</a>
</li>
<li class="bold">
<a href="./../html-css-splitter.html" class="waves-effect waves-teal">html-css-splitter</a>
</li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion">
<li class="bold">
<a class="collapsible-header waves-effect waves-teal" tabindex="0">Converters</a>
<div class="collapsible-body">
<ul>
<li>
<a href="./../converter-colors.html">Converter Colors</a>
</li>
<li>
<a href="./../converter-screen-sizes.html">Converter Screen Sizes</a>
</li>
</ul>
</div>
</li>
</ul>
</li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion">
<li class="bold">
<a class="collapsible-header waves-effect waves-teal" tabindex="0">Tools</a>
<div class="collapsible-body">
<ul>
<li>
<a href="./../tool-reading-times.html">Reading Times</a>
</li>
</ul>
</div>
</li>
</ul>
</li>
<li class="sticky-footer--footer">
<div class="github-badge">
<a href="/~https://github.com/dmetzler1988-org/converter" target="_blank" title="View GitHub Code">
<i class="material-icons">visibility</i>
<i class="github-icon"></i>
<i class="material-icons">code</i>
</a>
</div>
</li>
</ul>
</header>
<main>
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m1 xl7 offset-xl1">
<section class="section">
<p>Welcome to my converter page.</p>
<p>Take a look to the currently available converter pages and write issues, if you have additional ideas :)</p>
</section>
<section class="section">
<h3>Additional information</h3>
<p>Please write an issue if you found some bugs or you have any further ideas for an converter.</p>
</section>
<section class="section">
<h3>Credits</h3>
<p>Thank’s a lot to each who is marked here!</p>
<ul class="collection">
<li class="collection-item">Fav-Icons made by <a href="https://www.flaticon.com/authors/freepik" target="_blank">Freepik</a> from <a href="https://www.flaticon.com/" target="_blank">www.flaticon.com</a></li>
<li class="collection-item">This Open Source project is made with <a href="https://www.jetbrains.com/?from=ConverterPage" target="_blank">JetBrains - IntelliJ IDEA</a></li>
</ul>
</section>
</div>
</div>
</div>
</main>
<script type="text/javascript" src="./public/main.js?v=20210321"></script>
</body>
</html>