-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogpost.html
More file actions
54 lines (49 loc) · 1.61 KB
/
blogpost.html
File metadata and controls
54 lines (49 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fippli.se</title>
<link href="css/index.css" rel="stylesheet" />
<link href="css/syntax-highlighting.css" rel="stylesheet" />
</head>
<body>
<header>
<div class="title-wrapper">
<a href="index.html" class="title">fippli</a>
</div>
<div class="social-media-links">
<a
href="https://github.com/fippli"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/filip-johansson-036b9984/"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-linkedin"></i
></a>
</div>
</header>
<main>
<div id="blogpostWrapper"></div>
</main>
<footer>
Found any errors or mistakes? <br />
<a href="https://github.com/fippli/fippli.se-cdn/issues"
>Put an issue on github</a
>
</footer>
<!-- Scripts -->
<script
src="https://kit.fontawesome.com/f4357c5d62.js"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.9.1/showdown.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/components/prism-core.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/plugins/autoloader/prism-autoloader.min.js"></script>
<script src="js/blogpost.js" type="text/javascript"></script>
</body>
</html>