chore: blogroll to json; format consistently
This commit is contained in:
parent
910e03384e
commit
2025dfba0f
4 changed files with 31 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "4.10.1",
|
"version": "4.11.1",
|
||||||
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
5
src/_data/blogroll.js
Normal file
5
src/_data/blogroll.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import blogroll from './json/blogroll.js'
|
||||||
|
|
||||||
|
export default async function () {
|
||||||
|
return blogroll
|
||||||
|
}
|
16
src/_data/json/blogroll.js
Normal file
16
src/_data/json/blogroll.js
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
export default [
|
||||||
|
{ "name": "Ashur Cabrera", "url": "https://multiline.co/mment" },
|
||||||
|
{ "name": "Chris Burnell", "url": "https://chrisburnell.com" },
|
||||||
|
{ "name": "fLaMEd", "url": "https://flamedfury.com/" },
|
||||||
|
{ "name": "Joe Steel", "url": "https://joe-steel.com" },
|
||||||
|
{ "name": "Keenan", "url": "https://gkeenan.co/avgb" },
|
||||||
|
{ "name": "Łukasz Wójcik", "url": "https://lukaszwojcik.net" },
|
||||||
|
{ "name": "Matt Birchler", "url": "https://birchtree.me" },
|
||||||
|
{ "name": "Mike Haynes", "url": "https://mikehaynes.blog" },
|
||||||
|
{ "name": "Paul Anthony Webb", "url": "https://webb.page" },
|
||||||
|
{ "name": "Raymond Camden", "url": "https://raymondcamden.com" },
|
||||||
|
{ "name": "Robb Knight", "url": "https://rknight.me" },
|
||||||
|
{ "name": "Sia Karamalegos", "url": "https://sia.codes" },
|
||||||
|
{ "name": "Stephanie Eckles", "url": "https://thinkdobecreate.com" },
|
||||||
|
{ "name": "Zach Leatherman", "url": "https://www.zachleat.com" }
|
||||||
|
]
|
|
@ -6,18 +6,12 @@ image: /assets/img/ogi/blogroll.jpg
|
||||||
description: 'These are awesome blogs that I enjoy and you may enjoy too.'
|
description: 'These are awesome blogs that I enjoy and you may enjoy too.'
|
||||||
---
|
---
|
||||||
<h2 class="page__header">{{ title }}</h2>
|
<h2 class="page__header">{{ title }}</h2>
|
||||||
|
<ul class="link__list">
|
||||||
- [Ashur Cabrera](https://multiline.co/mment)
|
{% for blog in blogroll %}
|
||||||
- [Chris Burnell](https://chrisburnell.com)
|
<li>
|
||||||
- [fLaMEd](https://flamedfury.com/)
|
<a class="no-underline" href="{{blog.url}}">
|
||||||
- [Joe Steel](https://joe-steel.com)
|
{{ blog.name }}
|
||||||
- [Keenan](https://gkeenan.co/avgb)
|
</a>
|
||||||
- [Łukasz Wójcik](https://lukaszwojcik.net)
|
</li>
|
||||||
- [Matt Birchler](https://birchtree.me)
|
{% endfor %}
|
||||||
- [Mike Haynes](https://mikehaynes.blog)
|
</ul>
|
||||||
- [Paul Anthony Webb](https://webb.page)
|
|
||||||
- [Raymond Camden](https://raymondcamden.com)
|
|
||||||
- [Robb Knight](https://rknight.me)
|
|
||||||
- [Sia Karamalegos](https://sia.codes)
|
|
||||||
- [Stephanie Eckles](https://thinkdobecreate.com)
|
|
||||||
- [Zach Leatherman](https://www.zachleat.com)
|
|
||||||
|
|
Reference in a new issue