-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.md
More file actions
27 lines (25 loc) · 895 Bytes
/
Copy pathhome.md
File metadata and controls
27 lines (25 loc) · 895 Bytes
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
---
title: Programming Site
layout: mysplash
permalink: /
date: 2023-10-25T10:14:48.572Z
header:
image: /assets/images/buymeacoffee3.webp
image_size: 200px
alt: "matan logo"
excerpt: Welcome to my site.
intro:
- excerpt: Welcome to my site! I hope you find my tools useful. Any comments are welcome. All tools are free to use with attribution (see individual licenses).
---
{% include feature_row id="intro" type="center" %}
<div class="gallery">
{% for post in site.posts %}
<a class="gallery-item" href="{{ post.url }}" style="background-image: url('{{ post.image|default: '/assets/images/image-alignment-300x200.webp' }}');{{post.image_custom_style}}">
<span class="image-gradient"></span>
<div class='card-content'>
<h2 class='card-title'>{{ post.title }}</h2>
<p class="card-date">{{ post.date | date: "%B %d, %Y" }}</p>
</div>
</a>
{% endfor %}
</div>