attempt at adding src paths
parent
0bc06ce618
commit
45aafba4bc
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: layouts/home.njk
|
||||
layout: src/layouts/home.njk
|
||||
permalink: 404.html
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: layouts/base.njk
|
||||
layout: src/layouts/base.njk
|
||||
templateClass: tmpl-home
|
||||
---
|
||||
{{ content | safe }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: layouts/base.njk
|
||||
layout: src/layouts/base.njk
|
||||
templateClass: tmpl-post
|
||||
---
|
||||
<h1>{{ title }}</h1>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: layouts/home.njk
|
||||
layout: src/layouts/home.njk
|
||||
permalink: /posts/
|
||||
eleventyNavigation:
|
||||
key: Archive
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: layouts/home.njk
|
||||
layout: src/layouts/home.njk
|
||||
eleventyNavigation:
|
||||
key: Home
|
||||
order: 1
|
||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- PVE
|
||||
- VMs
|
||||
- linux
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
This post has been in the works since November 2021, or rather I thought of around then, it hasn't been until February 2022 that I have started drafting anything, as such early details about setting this up may require reading the PVE Documentation more than if I could explain it all. This series is less of a tutorial and more so a collection of my experiences working with the projects. With that in mind let's begin.
|
||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- self-hosting
|
||||
- linux
|
||||
- vps-series
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
![](/img/cloud.png)
|
||||
|
|
|
@ -4,7 +4,7 @@ description: An introduction to GitHub from someone fairly new to it
|
|||
date: 2021-11-17
|
||||
tags:
|
||||
- github
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
<br>
|
||||
|
|
|
@ -8,7 +8,7 @@ tags:
|
|||
- self-hosting
|
||||
- github
|
||||
- how-to
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
![image](https://user-images.githubusercontent.com/64846840/188291755-3b17cbfb-667b-43cd-97c4-748a1d9f769a.png)
|
||||
|
|
|
@ -5,7 +5,7 @@ date: 2021-10-16
|
|||
tags:
|
||||
- freeside
|
||||
- uni
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
<br>
|
||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- Nginx
|
||||
- self-hosting
|
||||
- how-to
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
I was looking for a way to lock my sites that need some sort of authentication that does not come built in. I had tried [Autheila](https://github.com/authelia/authelia) but I could never get it working. So here is a quick tutorial on locking sites with [Nginx Proxy Manager](https://nginxproxymanager.com/) (NPM)
|
||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- github
|
||||
- netlify
|
||||
- web development
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
Please note that I will be updating this as I go along. This is my **first** time using Netlify, as such I lack a lot of experience using the service so far. I have been using GitHub consistently since September 2021 so I am still relatively new to how everything works. If there are any issues you can log them [here](https://github.com/CrimsonTome/crimsontome-blog/issues), ping me on Discord: `CrimsonTome427#7459` or send me and email at `crimsontome427@gmail.com`
|
||||
|
|
|
@ -6,7 +6,7 @@ tags:
|
|||
- self-hosting
|
||||
- linux
|
||||
- vps-series
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
A few months ago I made a [post](https://blog.crimsontome.com/posts/PVE/) on Proxmox and what I run/ran on my physical home server, and whilst I have now fixed my hardware issues (by geting completely different hardware) I am yet to recreate all my VMs on that machine. So in the meantime, using my [GitHub Student](https://education.github.com/pack) credits I have setup a VPS with [DigitalOcean](https://www.digitalocean.com/products/droplets).
|
||||
|
|
|
@ -4,7 +4,7 @@ description: This is my first post, it is an introduction to Raspberry Pi.
|
|||
date: 2021-10-15
|
||||
tags:
|
||||
- raspberry pi
|
||||
layout: layouts/post.njk
|
||||
layout: src/layouts/post.njk
|
||||
---
|
||||
|
||||
# So you want to find out about the Raspberry Pi?
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
permalink: /tags/
|
||||
layout: layouts/home.njk
|
||||
layout: src/layouts/home.njk
|
||||
---
|
||||
<h1>Tags</h1>
|
||||
|
||||
|
|
Loading…
Reference in New Issue