-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Blog in Disguise</title>
<link rel="stylesheet" href="index.css" />
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="header">
<a href="pages/blog/overview/blog-overview.html" target="content-frame" data-links-to="blog-overview">
<div class="flex-centered">
<img id="icon-image" src="resources/images/dev-in-disguise.jpg" alt="Dev-In-Disguise Icon" title="Dev-In-Disguise Icon" />
<h1 id="blog-title">Blog in Disguise</h1>
</div>
</a>
<p id="blog-subtitle">Ramblings of a .NET developer</p>
</div>
<div id="menu-container" class="flex-centered">
<a href="pages/blog/overview/blog-overview.html" target="content-frame" data-links-to="blog-overview" class="menu-item-common">Home</a>
<a href="pages/about/about.html" target="content-frame" data-links-to="about" class="menu-item-common" style="border-left-style: none;">About</a>
</div>
<hr id="heading-content-divider" />
<div>
<iframe name="content-frame" id="content-frame"></iframe>
</div>
</body>
</html>