-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.3 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
<html>
<head>
<title>My First Webpage</title>
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to the dummy-webpage!</h1>
<p>This will be replaced by the static webpages generated by the gh-pages deployment of the ASCIIDoc converter in the Github-Actions pipeline.</p>
<p><a href="http://localhost:8080/convert/?url=https://raw.githubusercontent.com/UnterrainerInformatik/cheatsheets/master/linux_cheat_sheet.md" target="_new">click here...</a> to show a sample MD conversion.</p>
<p><a href="http://localhost:8080/convert/?url=https://raw.githubusercontent.com/UnterrainerInformatik/java-http-server/master/README.md" target="_new">click here...</a> to show another sample MD conversion.</p>
<br />
<p><a href="http://localhost:8080/md/Test-MD-File.md" target="_new">click here...</a> to show a statically linked MD conversion.</p>
<p><a href="http://localhost:8080/md/Lernstrecke.md" target="_new">click here...</a> to show the Lernstrecke test-file.</p>
</main>
<footer>
<p>© 2024 My First Webpage</p>
</footer>
</body>
</html>