Skip to content

Commit

Permalink
reorganizing directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikopet committed Dec 31, 2020
1 parent 779e509 commit d8e59a5
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions LICENSE
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
layout: post
title: "println!("{} World!", "Hello");"
date: 2020-12-24
category: blog
tags: modeling architect
lectors: sagikazarmark, noslopy
---

### Abstract

Almost every development themed blog starts with the development of the very same blog. Why is that? _It is because:_

> We coders love to create, love to achieve. It is a game for us to challenge ourselves every damn day.<!--more-->
Expand Down
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion index.html → pages/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
layout: default
permalink: /
---

<div class="posts">
{% for post in site.posts %}
{% assign posts = site.collections | where: "label", "blog" %}
{% assign posts = site.posts | where: 'category', 'blog' %}
{% for post in posts %}
<article class="post">

<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
Expand Down
2 changes: 1 addition & 1 deletion license.html → pages/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
permalink: /license
---

{% capture license_raw %}{% include_relative LICENSE.md %}{% endcapture %}
{% capture license_raw %}{% include_relative license.md %}{% endcapture %}
{{ license_raw | markdownify }}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d8e59a5

Please sign in to comment.