new drafts and category
This commit is contained in:
parent
5674b8eefb
commit
888745bb0f
4 changed files with 50 additions and 9 deletions
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
title: "Seriously Holding Off this Blog's Rewrite to Focus on Content"
|
||||
description: "Have you ever heard the joke about the web developer who also has a blog? I'm that web developer."
|
||||
category: personal
|
||||
permalink: /:title/
|
||||
---
|
||||
|
||||
The thing about being a web developer and maintaining a personal blog is that you often feel the need to improve the site--even more often than actually writing content. This has become common joke in the tech world.
|
|
@ -5,4 +5,23 @@ description: If you ask how I want to change the web, I start here
|
|||
category: projects
|
||||
---
|
||||
|
||||
A lot of websites has become a "pay for convenience" business model.
|
||||
Have you ever clicked a link to an article, all hyped up to read the content, only to be slapped in the face with popups over popups of requests to subscribe and consent permission?
|
||||
|
||||
Ah, well you're not alone.
|
||||
|
||||
A lot of websites now has become a "pay for convenience" kind of business.
|
||||
|
||||
Either you pay for literal money and get access to their content, or they make you jump through hoops and you pay with time (and your personal data).
|
||||
|
||||
And the hard truth is, website owners have every right to do this.
|
||||
|
||||
The more digital-literate people know several solutions exist to get around this.
|
||||
|
||||
You have browsers offering a Reader View.
|
||||
|
||||
You have apps like Pocket.
|
||||
|
||||
But are these solutions enough now?
|
||||
|
||||
## Your Modern-Day Reading Assistant
|
||||
|
||||
|
|
11
_drafts/2023-05-29-jason-bourne-vs-john-wick.md
Normal file
11
_drafts/2023-05-29-jason-bourne-vs-john-wick.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: John Wick is Just a Repackaged Jason Bourne
|
||||
permalink: /:title/
|
||||
description: "A description of the blog"
|
||||
category: entertainment
|
||||
---
|
||||
|
||||
<!-- In this blog
|
||||
1. what are web workers
|
||||
-->
|
||||
|
19
entertainment.html
Normal file
19
entertainment.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: category
|
||||
category-name: entertainment
|
||||
title: Entertainment Posts
|
||||
permalink: /entertainment/
|
||||
---
|
||||
|
||||
<h1>Entertainment Posts</h1>
|
||||
|
||||
<div class="blog-home">
|
||||
{% if site.categories.entertainment.size > 0 %}
|
||||
<ul class="blog-home__list-items">
|
||||
{% for post in site.categories.entertainment %}{% include post-item.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
<span>No posts to show.</span>
|
||||
{% endif %}
|
||||
</div>
|
Loading…
Reference in a new issue