-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (59 loc) · 2.1 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap" rel="stylesheet">
</head>
<title>Blogging Website Layout</title>
</head>
<body class="main-bg">
<header>
<h1>A Quanta of Philosophy</h1>
<p>Gustav's Internet Spot</p>
</header>
<aside class="menu">
<section class="main-content
menu-content">
<h1> A Quanta of Philosophy </h1>
<nav>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</section>
</aside>
<div class="container">
<main>
<article class="blogarticle">
<a href="weinstein.html">A philosophical analysis on Weinstein's works, Pt. 1</a>
<p class="post-meta">
Published on January 25, 2025 by Gustav
</p>
<p>
In the first part of this three parts series, we aim to introduce the main results concerning the canonical procedure of geometric quantization, to sediment the terrain for what's to come.
</p>
</article>
</main>
<aside class="blogaside">
<h2>Recent Posts</h2>
<ul>
<li><a href="weinstein.html">A philosophical analysis on Weinstein's works, Pt. 1</a></li>
</ul>
</aside>
</div>
</body>
<footer>
<p>© 2025 A Quanta of Philosophy. All rights reserved.</p>
</footer>
</html>