diff --git a/netlify.toml b/netlify.toml index 8c0017c1..b18dfecb 100644 --- a/netlify.toml +++ b/netlify.toml @@ -58,6 +58,11 @@ for = "/contribute.json" [headers.values] Content-Type = "application/json" +[[headers]] +for = "/blogroll.opml" + [headers.values] + Content-Disposition = "attachment; filename=cory-dransfeldt-blogroll.opml" + [[headers]] for = "/*" [headers.values] diff --git a/package.json b/package.json index 78d9cc91..84051063 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "4.11.1", + "version": "4.12.1", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_data/json/blogroll.js b/src/_data/json/blogroll.js index cc9c1edc..0bd6338a 100644 --- a/src/_data/json/blogroll.js +++ b/src/_data/json/blogroll.js @@ -1,16 +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" } + { "name": "Ashur Cabrera", "url": "https://multiline.co/mment", "feed": "https://multiline.co/mment/feed.xml", "description": "An excellent writer and a must follow for content both technical and otherwise." }, + { "name": "Chris Burnell", "url": "https://chrisburnell.com", "feed": "https://chrisburnell.com/feed.xml", "description": "A whole host of useful posts on CSS, JavaScript and other technical topics." }, + { "name": "fLaMEd", "url": "https://flamedfury.com", "feed": "https://flamedfury.com/feed.xml", "description": "Awesome retro and small web content — plus the design of the is awesome." }, + { "name": "Joe Steel", "url": "https://joe-steel.com", "feed": "https://joe-steel.com/feed.xml", "description": "Joe blogs about tech, the perpetually abysmal state of Apple's TV and movie products and numerous other things." }, + { "name": "Keenan", "url": "https://gkeenan.co/avgb", "feed": "https://gkeenan.co/avglb?format=rss", "description": "If you don't love them it's because you don't yet know them — a fantastic writer too." }, + { "name": "Łukasz Wójcik", "url": "https://lukaszwojcik.net", "feed": "https://blog.lukaszwojcik.net/full.xml", "description": "Posts about tech, web development and Eleventy. Łukasz is a talented and kind engineer." }, + { "name": "Matt Birchler", "url": "https://birchtree.me", "feed": "https://birchtree.me/rss/", "description": "Matt is exceedingly kind and also posts about Apple, tech and other topics." }, + { "name": "Mike Haynes", "url": "https://crashthearcade.com", "feed": "https://crashthearcade.com/feed/rss", "description": "A beautifully-designed site and I enjoy Mike's commentary and writing." }, + { "name": "Paul Anthony Webb", "url": "https://webb.page", "description": "One of the coolest, most unique personal sites around." }, + { "name": "Raymond Camden", "url": "https://raymondcamden.com", "feed": "https://www.raymondcamden.com/feed.xml", "description": "Raymond covers a wide, wide range of web development topics and never fails to provide both insight and clarity." }, + { "name": "Robb Knight", "url": "https://rknight.me", "feed": "https://rknight.me/subscribe/posts/rss.xml", "description": "Robb has the coolest site on the web and is an all around awesome dude." }, + { "name": "Sia Karamalegos", "url": "https://sia.codes", "feed": "https://sia.codes/feed/feed.xml", "description": "An accomplished speaker and writer, Sia's blog is full of useful posts on a wide array of development topics." }, + { "name": "Stephanie Eckles", "url": "https://thinkdobecreate.com", "feed": "https://thinkdobecreate.com/feed", "description": "Myriad helpful and easy to understand resources to learn CSS and numerous other web development topics." }, + { "name": "Zach Leatherman", "url": "https://www.zachleat.com", "feed": "https://www.zachleat.com/web/feed/", "description": "Eleventy's creator who posts handy content about the framework, web components and web development writ large." } ] \ No newline at end of file diff --git a/src/assets/styles/pages/blogroll.css b/src/assets/styles/pages/blogroll.css new file mode 100644 index 00000000..62f88cb3 --- /dev/null +++ b/src/assets/styles/pages/blogroll.css @@ -0,0 +1,32 @@ +:root { + --grid: repeat(2,minmax(0,1fr)); + --blog-roll-spacing: .75rem; +} + +.blog__banner--grid { + display: grid; + gap: .5rem; + grid-template-columns: var(--grid); +} + +.blog__banner { + padding: var(--blog-roll-spacing); + border: 1px solid var(--gray-light); + border-radius: var(--rounded-lg); + background-color: var(--gray-lighter); + display: flex; + flex-direction: column; +} + +.blog__banner > h4, +.blog__banner > p, +.blog__banner .meta { + margin-top: 0; + margin-bottom: var(--blog-roll-spacing); +} + +@media screen and (min-width: 768px) { + :root { + --grid: repeat(3,minmax(0,1fr)); + } +} \ No newline at end of file diff --git a/src/pages/blogroll.html b/src/pages/blogroll.html new file mode 100644 index 00000000..a22eb6c3 --- /dev/null +++ b/src/pages/blogroll.html @@ -0,0 +1,28 @@ +--- +title: Blogroll +layout: default +permalink: /blogroll.html +image: /assets/img/ogi/blogroll.jpg +description: 'These are awesome blogs that I enjoy and you may enjoy too.' +--- +{% capture css %} + {% render "../assets/styles/pages/blogroll.css" %} +{% endcapture %} + +
You can download an OPML file containing all of these feeds and import them into your RSS reader.
+ +Head on over to blogroll.org to find more blogs to follow or search for feeds using feedle.
\ No newline at end of file diff --git a/src/pages/blogroll.md b/src/pages/blogroll.md deleted file mode 100644 index b106042b..00000000 --- a/src/pages/blogroll.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Blogroll -layout: default -permalink: /blogroll.html -image: /assets/img/ogi/blogroll.jpg -description: 'These are awesome blogs that I enjoy and you may enjoy too.' ---- -