Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
source 'https://rubygems.org'
source "https://rubygems.org"

# 'github-pages' includes 'jekyll' gem
gem 'github-pages'
gem 'bourbon'
gem 'jemoji'
gem "github-pages"
gem "bourbon"
gem "jemoji"
gem "jekyll-time-to-read"
gem 'html-proofer'
gem "html-proofer"
gem "jekyll-assets"
gem "jekyll-archives"

group :jekyll_plugins do
gem 'pagemaster'
gem "pagemaster"
end
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ GEM
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-archives (2.2.1)
jekyll (>= 3.6, < 5.0)
jekyll-assets (2.4.0)
concurrent-ruby (~> 1.0)
extras (~> 0.2)
Expand Down Expand Up @@ -281,6 +283,7 @@ DEPENDENCIES
bourbon
github-pages
html-proofer
jekyll-archives
jekyll-assets
jekyll-time-to-read
jemoji
Expand Down
19 changes: 19 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins:
- jekyll-time-to-read
- jekyll-sitemap
- pagemaster
- jekyll-archives

title: "Valentino Urbano"
description: >
Expand Down Expand Up @@ -86,3 +87,21 @@ assets:
path: ".jekyll-cache/assets"
type: file # Possible values: memory, file
enabled: true

jekyll-archives:
enabled: [
year, month, day, categories #, tags
]
layout: archive-tagcategory
layouts:
year: archive-year
month: archive-month
day: archive-day
category: archive-tagcategory
tag: archive-tagcategory
permalinks:
year: '/archive/:year/'
month: '/archive/:year/:month/'
day: '/archive/:year/:month/:day/'
tag: '/archive/tag/:name/'
category: '/archive/category/:name/'
67 changes: 67 additions & 0 deletions _layouts/archive-day.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}

<body itemscope itemtype="http://schema.org/Article">
{% include header.html %}
<main class="content" role="main">
<article class="post">
{% if page.image %}
<div class="article-image">
<div class="post-image-image" style="background-image: url({% if page.image %}{{ page.image }}{% endif %})">
Article Image
</div>
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%B %-d, %Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ site.author_image | prepend: site.baseurl }})">Blog Logo
</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ site.author }}</h4>
</div>
<div style="text-align:center">
<a href="#topofpage" class="topofpage"><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div>
{% else %}
<div class="noarticleimage">
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%B %-d, %Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ page.author_image }})">Blog Logo</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ page.author }}</h4>
</div>
</div>
</div>
<br>
<br>
<br> {% endif %}
<section class="post-content">
<a name="topofpage"></a>

<ul class="posts">
{% for post in page.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

</section>
</article>
</main>
<div class="bottom-closer">
<div class="background-closer-image" {%if site.cover %} style="background-image: url({{ site.cover | prepend: site.baseurl }})" {% endif %}>
Image
</div>
<div class="inner">
<h2 class="blog-title">{{ site.title }}</h2>
<h3 class="blog-description">{{ site.description }}</h3>
<a href={{ "/" | prepend: site.baseurl }} class="btn">Back to Overview</a>
</div>
</div>
{% include javascripts.html %}{% include footer.html %}
</body>

</html>
67 changes: 67 additions & 0 deletions _layouts/archive-month.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}

<body itemscope itemtype="http://schema.org/Article">
{% include header.html %}
<main class="content" role="main">
<article class="post">
{% if page.image %}
<div class="article-image">
<div class="post-image-image" style="background-image: url({% if page.image %}{{ page.image }}{% endif %})">
Article Image
</div>
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%B %Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ site.author_image | prepend: site.baseurl }})">Blog Logo
</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ site.author }}</h4>
</div>
<div style="text-align:center">
<a href="#topofpage" class="topofpage"><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div>
{% else %}
<div class="noarticleimage">
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%B %Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ page.author_image }})">Blog Logo</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ page.author }}</h4>
</div>
</div>
</div>
<br>
<br>
<br> {% endif %}
<section class="post-content">
<a name="topofpage"></a>

<ul class="posts">
{% for post in page.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

</section>
</article>
</main>
<div class="bottom-closer">
<div class="background-closer-image" {%if site.cover %} style="background-image: url({{ site.cover | prepend: site.baseurl }})" {% endif %}>
Image
</div>
<div class="inner">
<h2 class="blog-title">{{ site.title }}</h2>
<h3 class="blog-description">{{ site.description }}</h3>
<a href={{ "/" | prepend: site.baseurl }} class="btn">Back to Overview</a>
</div>
</div>
{% include javascripts.html %}{% include footer.html %}
</body>

</html>
67 changes: 67 additions & 0 deletions _layouts/archive-tagcategory.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}

<body itemscope itemtype="http://schema.org/Article">
{% include header.html %}
<main class="content" role="main">
<article class="post">
{% if page.image %}
<div class="article-image">
<div class="post-image-image" style="background-image: url({% if page.image %}{{ page.image }}{% endif %})">
Article Image
</div>
<div class="post-meta">
<h1 class="post-title">Archive of posts with {{ page.type }} '{{ page.title }}'</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ site.author_image | prepend: site.baseurl }})">Blog Logo
</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ site.author }}</h4>
</div>
<div style="text-align:center">
<a href="#topofpage" class="topofpage"><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div>
{% else %}
<div class="noarticleimage">
<div class="post-meta">
<h1 class="post-title">Archive of posts with {{ page.type }} '{{ page.title }}'</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ page.author_image }})">Blog Logo</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ page.author }}</h4>
</div>
</div>
</div>
<br>
<br>
<br> {% endif %}
<section class="post-content">
<a name="topofpage"></a>

<ul class="posts">
{% for post in page.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

</section>
</article>
</main>
<div class="bottom-closer">
<div class="background-closer-image" {%if site.cover %} style="background-image: url({{ site.cover | prepend: site.baseurl }})" {% endif %}>
Image
</div>
<div class="inner">
<h2 class="blog-title">{{ site.title }}</h2>
<h3 class="blog-description">{{ site.description }}</h3>
<a href={{ "/" | prepend: site.baseurl }} class="btn">Back to Overview</a>
</div>
</div>
{% include javascripts.html %}{% include footer.html %}
</body>

</html>
67 changes: 67 additions & 0 deletions _layouts/archive-year.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}

<body itemscope itemtype="http://schema.org/Article">
{% include header.html %}
<main class="content" role="main">
<article class="post">
{% if page.image %}
<div class="article-image">
<div class="post-image-image" style="background-image: url({% if page.image %}{{ page.image }}{% endif %})">
Article Image
</div>
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ site.author_image | prepend: site.baseurl }})">Blog Logo
</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ site.author }}</h4>
</div>
<div style="text-align:center">
<a href="#topofpage" class="topofpage"><i class="fa fa-angle-down"></i></a>
</div>
</div>
</div>
{% else %}
<div class="noarticleimage">
<div class="post-meta">
<h1 class="post-title">Archive of posts from {{ page.date | date: "%Y" }}</h1>
<div class="cf post-meta-text">
<div class="author-image" style="background-image: url({{ page.author_image }})">Blog Logo</div>
<h4 class="author-name" itemprop="author" itemscope itemtype="http://schema.org/Person">{{ page.author }}</h4>
</div>
</div>
</div>
<br>
<br>
<br> {% endif %}
<section class="post-content">
<a name="topofpage"></a>

<ul class="posts">
{% for post in page.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

</section>
</article>
</main>
<div class="bottom-closer">
<div class="background-closer-image" {%if site.cover %} style="background-image: url({{ site.cover | prepend: site.baseurl }})" {% endif %}>
Image
</div>
<div class="inner">
<h2 class="blog-title">{{ site.title }}</h2>
<h3 class="blog-description">{{ site.description }}</h3>
<a href={{ "/" | prepend: site.baseurl }} class="btn">Back to Overview</a>
</div>
</div>
{% include javascripts.html %}{% include footer.html %}
</body>

</html>