-
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.
- README file was updated. - style.css was updated for default theme. - template pages were modified/updated. - details pages stylized via templates.
- Loading branch information
Showing
11 changed files
with
251 additions
and
65 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
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
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
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
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
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
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,19 @@ | ||
{% extends "base.html" %} {% block title %}{{ title }} - Muhsin Arslan{% | ||
endblock %} {% block content %} | ||
<article class="blog-post container"> | ||
<a href="/blog.html" class="back-link">← Back to Blog</a> | ||
|
||
<div class="post-header"> | ||
<h1>{{ title }}</h1> | ||
<div class="post-meta"> | ||
<time datetime="{{ date }}">{{ date }}</time> | ||
</div> | ||
</div> | ||
|
||
{% if image %} | ||
<img src="{{ image }}" alt="{{ title }}" class="post-image" /> | ||
{% endif %} | ||
|
||
<div class="post-content">{{ content | safe }}</div> | ||
</article> | ||
{% endblock %} |
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
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,21 @@ | ||
{% extends "base.html" %} {% block title %}{{ title }} - Book Review - Muhsin | ||
Arslan{% endblock %} {% block content %} | ||
<article class="book-detail container"> | ||
<a href="/books.html" class="back-link">← Back to Books</a> | ||
|
||
<div class="book-header"> | ||
<div class="book-info"> | ||
<h1>{{ title }}</h1> | ||
<div class="publish-date"> | ||
<time datetime="{{ date }}">{{ date }}</time> | ||
</div> | ||
</div> | ||
|
||
{% if image %} | ||
<img src="{{ image }}" alt="{{ title }}" class="book-cover" /> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="book-description">{{ content | safe }}</div> | ||
</article> | ||
{% endblock %} |
Oops, something went wrong.