Skip to content

Commit 8c19aeb

Browse files
Testing posts. Not working in local testing.
1 parent cd1646f commit 8c19aeb

File tree

6 files changed

+28
-2
lines changed

6 files changed

+28
-2
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ minima:
2121
header_pages:
2222
- index.md
2323
- projects.md
24+
- posts.md
2425

2526
title: azurepolarbear - code artist
2627
description: algorithmic artist making beautiful things with code

_includes/footer.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@
3939
</div>
4040

4141
<!-- default change: metricool tracking script -->
42-
<script>function loadScript(a){var b=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.src="https://tracker.metricool.com/resources/be.js",c.onreadystatechange=a,c.onload=a,b.appendChild(c)}loadScript(function(){beTracker.t({hash:"fa35a500604e0a63d99df6e5d54e2966"})});</script>
42+
<!--<script>function loadScript(a){var b=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.src="https://tracker.metricool.com/resources/be.js",c.onreadystatechange=a,c.onload=a,b.appendChild(c)}loadScript(function(){beTracker.t({hash:"fa35a500604e0a63d99df6e5d54e2966"})});</script>
43+
-->
4344
</footer>

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta name="viewport" content="width=device-width, initial-scale=1">
55

66
<!-- default change: pinterest tag -->
7-
<meta name="p:domain_verify" content="50a10ff3b2aa4fcfafd0801bd0f4b77d"/>
7+
<!--<meta name="p:domain_verify" content="50a10ff3b2aa4fcfafd0801bd0f4b77d"/>-->
88

99
{%- seo -%}
1010
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@latest/css/all.min.css">

_posts/algorithmic-art/2025-02-27-how-do-you-make-art-with-code.md renamed to blog/_posts/2025-02-26-how-do-you-make-art-with-code.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
layout: post
3+
author: "azurepolarbear"
34
title: "How do you make art with code?"
5+
date: 2025-02-26 00:00:00 -0000
46
---
57

68
What is code?

index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: 'home'
3+
layout: home
34
---
45

56
# azurepolarbear | code artist
@@ -38,6 +39,14 @@ in the [brittni and the polar bear | code + art boutique](https://brittniandthep
3839

3940
----
4041

42+
## posts
43+
44+
{% for post in site.posts limit:1 %}
45+
<h2><a href=".{{ post.url }}">{{ post.title }}</a></h2>
46+
{% endfor %}
47+
48+
----
49+
4150
## donate
4251

4352
We are currently accepting donations to support our creative projects.

posts.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: posts
3+
---
4+
5+
# Hello
6+
7+
<ul>
8+
{% for post in site.posts %}
9+
<li>
10+
<a href="{{ post.url }}">{{ post.title }}</a>
11+
</li>
12+
{% endfor %}
13+
</ul>

0 commit comments

Comments
 (0)