lxhome/_layouts/home.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2019-02-24 23:14:34 +00:00
---
layout: default
---
2019-03-28 21:20:47 +00:00
<div class="column is-half-desktop is-offset-one-quarter-desktop">
2019-04-26 15:48:50 +01:00
<section class="section is-size-4-desktop is-size-5-mobile">
2019-03-28 21:20:47 +00:00
<p class="text-centered">
2019-04-26 15:48:50 +01:00
<img
class="is-rounded"
alt="lxsameer"
src="https://lxsameer.com/images/me-1.jpg"
/>
2019-03-28 21:20:47 +00:00
</p>
<p class="info text-justified">
2019-04-27 00:48:04 +01:00
Hi! I'm <b>Sameer</b> and I usally write about
technology and software development (hmmm more like nagging instead of writing). Since
I'm lazy, my posts are short so I can write more often.
2019-03-28 21:20:47 +00:00
</p>
</section>
2019-02-24 23:14:34 +00:00
</div>
2019-03-28 21:20:47 +00:00
<div class="column is-half-desktop is-offset-one-quarter-desktop">
<section class="section">
2019-12-01 00:41:47 +00:00
<h3 class="header is-size-4">
2019-04-26 15:48:50 +01:00
Blog Posts:
</h3>
2019-02-24 23:14:34 +00:00
2019-04-26 15:48:50 +01:00
{% for post in site.posts %}
<div class="columns">
<div class="column">
<h2 class="is-size-3-desktop is-size-4-mobile">
<a class="post-title-link" href="{{ post.url }}">
<i class="fas fa-link"></i> {{ post.title }}
</a>
</h2>
</div>
2019-03-28 21:20:47 +00:00
</div>
2019-04-26 15:48:50 +01:00
{% endfor %}
2019-03-28 21:20:47 +00:00
</section>
2019-02-24 23:14:34 +00:00
</div>