generated from google/eleventy-high-performance-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.njk
30 lines (28 loc) · 839 Bytes
/
index.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: Piraces Personal Blog
layout: layouts/home.njk
description: Personal blog about software development and tech related things
date: Last Modified
pagination:
data: collections.posts
size: 10
alias: posts
permalink: /{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}
---
<p>
<b>👋 Hi! I'm Raúl Piracés</b>
</p>
</p>
I'm a Software Engineer 👨💻🎧 & Full Stack developer who is passionate about Web Development, Cloud computing architecture, and open source.
</p>
</p>
This is my personal blog when I write occasionally about sofware development and tech related things 🙂
</p>
<div id="posts">
<h2>Posts</h2>
{% set postslist = posts %}
{% include "postslist.njk" %}
</div>
{% set content = posts %}
{% set paginationSlug = "" %}
{% include "pagination_control.njk" %}