-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bf4ca7
commit dac3ac8
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |