Skip to content

Commit

Permalink
First trial to create blog page
Browse files Browse the repository at this point in the history
  • Loading branch information
yildirimalper committed May 20, 2024
1 parent 2bf4ca7 commit dac3ac8
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
42 changes: 42 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<title>Blog</title>
<link href="https://fonts.googleapis.com/css2?family=Latin+Modern+Roman&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Latin Modern Roman', serif;
}
/* Add your CSS styles here */
</style>
</head>
<body>
<header>
<div class="blog-name"><a href="/">Alper Yıldırım</a></div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/resume/">Resume</a></li>
<li><a href="/projects/">Projects</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
<img src="/assets/hamburger.svg" id="menu-icon">
</nav>
</header>

<div class="franklin-content">
<div class="content-container">
<div class="text-column">
<!-- Add your blog posts here -->
<div class="blog-post">
<h2><a href="blog/platonism.html">Notes on Platonism in the Philosophy of Mathematics</a></h2>
<small>Posted on January 1, 2023</small>
<p>This is a summary of the first blog post.</p>
</div>
<!-- Repeat the above div for each blog post -->
</div>
</div>
</div>
</body>
</html>
32 changes: 32 additions & 0 deletions blog/platonism.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>First Post - Alper Yıldırım</title>
<link href="https://fonts.googleapis.com/css2?family=Latin+Modern+Roman&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Latin Modern Roman', serif;
}
/* Add your CSS styles here */
</style>
</head>
<body>
<header>
<div class="blog-name"><a href="/">Alper Yıldırım</a></div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/resume/">Resume</a></li>
<li><a href="/projects/">Projects</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
</nav>
</header>
<div class="blog-post">
<h2>First Post</h2>
<small>Posted on January 1, 2023</small>
<p>This is the content of the first blog post.</p>
</div>
</body>
</html>

0 comments on commit dac3ac8

Please sign in to comment.