generated from arpitbatra123/eleventy-blog-mnml
-
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
Showing
7 changed files
with
61 additions
and
29 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,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<meta name="Description" content="Arpit Batra" /> | ||
<title>{{ title }}</title> | ||
<link rel="stylesheet" href="../styles/homepage.css" /> | ||
</head> | ||
<body> | ||
|
||
<div class="container"> | ||
{{ content }} | ||
</div> | ||
|
||
<div class="container"> | ||
<h2 class="category">Blog posts</h2> | ||
<ul class="posts"> | ||
{% for post in collections.posts reversed %} | ||
<li class="post"> | ||
<span class="post-title"> | ||
{% if post.data.externalLink %} | ||
<a href="{{ post.data.externalLink }}" target="__blank">{{ post.data.title }}</a> | ||
{% else %} | ||
<a href="{{ post.url }}">{{ post.data.title }}</a> | ||
{% endif %} | ||
</span> | ||
<span class="post-date"> | ||
{{ post.date | date: '%b %Y' | downcase }} | ||
</span> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
|
||
<div class="container back-link"> | ||
<a href="/">← Back</a> | ||
</div> | ||
</body> |
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,12 @@ | ||
--- | ||
layout: blogpage.liquid | ||
title: Blog | ||
--- | ||
|
||
<h2 class="category category-home ">Why has this blog been created ?</h2> | ||
|
||
Simply to document the things that interest me. Writing them forces me to be more precise and to understand and go deeper into certain concepts. | ||
| ||
Below you can find posts about some projects I did. I also archive what I do and I make some of my notes public. | ||
|
||
<!-- posts are below --> |
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