Added abstract shape mural

This commit is contained in:
2025-07-06 00:59:24 -04:00
parent b4dcd3953d
commit b18871471b
6 changed files with 201 additions and 6 deletions

View File

@ -7,9 +7,10 @@
<!-- TODO: Meta tags for embedding -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/home.css">
<title>CyBySide - Cyper's Blog</title>
<title>{{ title | default: metadata.title }} - Cyper's Blog</title>
</head>
<body>
<header>
@ -33,8 +34,25 @@
</nav>
</header>
<main>
<div class="container">
{{ content }}
<div class="container flex-adaptive">
<div class="flex-1">Text</div>
<div class="flex-1 home-grid">
<div class="fill-background fill-teal border-round-1 border-round-tl border-round-bl"></div>
<div class="fill-background fill-black diamond"></div>
<div class="fill-background fill-brown border-round-2 border-round-tr"></div>
<div class="fill fill-tan">
{% squareSvg 10 %}
</div>
<div class="fill-background fill-lightblue border-round border-round-2"></div>
<div class="fill-background fill-brown border-round-2 border-round-br"></div>
<div class="fill-background fill-tan border-round-1 border-round-tl border-round-tr border-round-bl"></div>
<div class="fill fill-lightblue">
{% triangleSvg 12 %}
</div>
<div class="fill-background fill-tan border-round-2 border-round-tr"></div>
</div>
</div>
</main>
<footer>

View File

@ -1,6 +1,5 @@
---
layout: layout.html
title: Hello World! Layout file change
---
{% for post in collections.post %}

9
src/posts.html Normal file
View File

@ -0,0 +1,9 @@
---
layout: layout.html
title: Hello World! Layout file change
---
{% for post in collections.post %}
<h2><a href="{{ post.url }}">{{ post.data.title }}</a></h2>
<p>{{ post.content }}</p>
{% endfor %}