Seperate articles into blog,recipes,guides

develop
Nathan Steel 3 years ago
parent 17de142989
commit 1fc9895111

@ -34,7 +34,7 @@
<p>Use the navigation above, or below to head to somewhere a little more, functional</p> <p>Use the navigation above, or below to head to somewhere a little more, functional</p>
<ul> <ul>
<li><a href="/">Home</a></li> <li><a href="/">Home</a></li>
<li><a href="/blog/guide-to-server-hosting.php">Guide to server hosting</a></li> <li><a href="/guides/guide-to-server-hosting.php">Guide to server hosting</a></li>
<li><a href="/projects.html">My projects</a></li> <li><a href="/projects.html">My projects</a></li>
</ul> </ul>
</section> </section>

@ -30,42 +30,15 @@
<main> <main>
<section> <section>
<p>You may be looking for my <a href="/guides/">guides</a>, or <a href="/recipes/">recipes</a>.</p>
<h2>Pinned</h2> </section>
<ul> <section>
<li><a href="/blog/guide-to-server-hosting.html">Aney's guide to server hosting</a></li>
</ul>
<h2>2022</h2> <h2>2022</h2>
<ul> <ul>
<li><a href="/blog/reducing-homelab.html">Reducing my Homelab</a> - 26/09/2022</li> <li><a href="/blog/reducing-homelab.html">Reducing my Homelab</a> - 26/09/2022</li>
<li><a href="/blog/password-protect-webpage.html">Password protect webpages</a> - (WIP)14/09/2022</li>
<li><a href="/blog/nginx-proxy.html">Proxy services with Nginx</a> - (WIP)14/09/2022</li>
<li><a href="/blog/install-kvm-virtual-machine.html">Install a KVM Virtual Machine</a> - (WIP)14/09/2022</li>
<li><a href="/blog/setup-git-server.html">Setup git server</a> - 13/09/2022</li>
<li><a href="/blog/backup-with-cron.html">Automate Backups with Cron</a> - 26/08/2022</li>
<li><a href="/blog/blog-thoughts-220822.html">Blog Thoughts (Layout/Articles)</a> - 22/08/2022</li> <li><a href="/blog/blog-thoughts-220822.html">Blog Thoughts (Layout/Articles)</a> - 22/08/2022</li>
<li><a href="/blog/my-steamdeck-arrived.html">My SteamDeck Arrived!</a> - 22/08/2022</li> <li><a href="/blog/my-steamdeck-arrived.html">My SteamDeck Arrived!</a> - 22/08/2022</li>
<li><a href="/blog/server-install-debian.html">Debian Install Guide (for Server)</a> - 22/08/2022</li>
<li><a href="/blog/set-static-ip.html">How to set a static IP</a> - 22/08/2022</li>
<li><a href="/blog/vm-seperation-of-concerns.html">VM Seperation of Concerns</a> - 29/07/2022</li>
<li><a href="/blog/setup-kvm-bridge.html">Setup a KVM bridge</a> - 29/07/2022</li>
<li><a href="/blog/virsh-cheatsheet.html">Virsh Cheatsheet</a> - 29/07/2022</li>
<li><a href="/blog/setup-qemu-kvm.html">Install KVM for virtualisation</a> - 29/07/2022</li>
<li><a href="/blog/backup-with-rdiff.html">Backup files with rdiff</a> - 17/07/2022</li>
<li><a href="/blog/backup-with-rsync.html">Backup files with rsync</a> - 17/07/2022</li>
<li><a href="/blog/add-php-to-nginx.html">PHP on Nginx setup</a> - 10/06/2022</li>
<li><a href="/blog/sql-cheatsheet.html">SQL Cheatsheet</a> - 09/06/2022</li>
<li><a href="/blog/adminer-setup.html">Adminer Setup</a> - 09/06/2022</li>
<li><a href="/blog/backup-mysql-mariadb.html">Backing Up MySQL/MariaDB</a> - 09/06/2022</li>
<li><a href="/blog/install-mysql-mariadb.html">MySQL/MariaDB Setup Guide</a> - 09/06/2022</li>
<li><a href="/blog/nginx-web-optimisation.html">NGINX web optimisation</a> - 30/05/2022</li>
<li><a href="/blog/certbot-ssl.html">Setup SSL with Certbot</a> - 30/05/2022</li>
<li><a href="/blog/setup-nginx-website.html">How to setup an nginx website</a> - 30/05/2022</li>
<li><a href="/blog/nginx-install.html">How to install an nginx webserver</a> - 30/05/2022</li>
<li><a href="/blog/get-a-domain-name.html">How to purchase a domain name</a> - 30/05/2022</li>
<li><a href="/blog/add-domain-to-server.html">Link your domain name to your server</a> - 24/05/2022</li>
<li><a href="/blog/initial-server-setup.html">Debian Server Setup</a> - 24/05/2022</li>
<li><a href="/blog/guide-to-server-hosting.html">Aney's guide to server hosting</a> - 24/05/2022</li> <li><a href="/blog/guide-to-server-hosting.html">Aney's guide to server hosting</a> - 24/05/2022</li>
</ul> </ul>

@ -61,8 +61,8 @@
<h2>Make nginx use index.php as homepage/root</h2> <h2>Make nginx use index.php as homepage/root</h2>
<p>Now we'll set nginx to load up index.php as the root of the website, if it exists. Open the site's config with an editor</p> <p>Now we'll set nginx to load up index.php as the root of the website, if it exists. Open the site's config with an editor</p>
<pre><code>vim /etc/nginx/sites-available/<WEBSITE></code></pre> <pre><code>vim /etc/nginx/sites-available/<WEBSITE></code></pre>
<p>Change the index line to rad as below. This will then tell the server to load index.php, and if it doesn't exists, load index.html in it's stead</p> <p>Change the index line to read as below. This will then tell the server to load index.php, and if it doesn't exists, load index.html in it's stead</p>
<pre><code>index index.php index.html</code><pre> <pre><code>index index.php index.html</code></pre>
</section> </section>
</main> </main>

@ -34,8 +34,8 @@
<h2>Pre-Requirements</h2> <h2>Pre-Requirements</h2>
<p>To run adminer, you'll need a webserver with php set up. Thankfully I'm a great guy, and have written about these topics before.</p> <p>To run adminer, you'll need a webserver with php set up. Thankfully I'm a great guy, and have written about these topics before.</p>
<ul> <ul>
<li><a href="/blog/nginx-install.html">Nginx Webserver Setup</a></li> <li><a href="/guides/nginx-install.html">Nginx Webserver Setup</a></li>
<li><a href="/blog/add-php-to-nginx.html">PHP setup for NGINX</a></li> <li><a href="/guides/add-php-to-nginx.html">PHP setup for NGINX</a></li>
</ul> </ul>
<h2>Download the latest release</h2> <h2>Download the latest release</h2>

@ -37,7 +37,7 @@
<p>You can just call rsync, etc. in cron, but I recommend making a backup script (or a few) for each specific type of backup you want to make.</p> <p>You can just call rsync, etc. in cron, but I recommend making a backup script (or a few) for each specific type of backup you want to make.</p>
<p>Create the file where-ever you want to keep them, for the sake of this, it'll be a scripts directory in your home directory</p> <p>Create the file where-ever you want to keep them, for the sake of this, it'll be a scripts directory in your home directory</p>
<pre><code>vim ~/scripts/backup_script.sh</code></pre> <pre><code>vim ~/scripts/backup_script.sh</code></pre>
<p>And add whatever your backup scripts wants to do. If you've no idea, check out my <a href="/blog/backup-with-rsync.html" target="_blank">rsync</a>, and <a href="/blog/backup-with-rdiff.html" target="_blank">rdiff</a> articles first.</p> <p>And add whatever your backup scripts wants to do. If you've no idea, check out my <a href="/guides/backup-with-rsync.html" target="_blank">rsync</a>, and <a href="/guides/backup-with-rdiff.html" target="_blank">rdiff</a> articles first.</p>
<pre><code>rdiff-backup $DIRECTORY_TO_BACKUP $DIRECTORY_TO_BACKUP_TO <pre><code>rdiff-backup $DIRECTORY_TO_BACKUP $DIRECTORY_TO_BACKUP_TO
rdiff-backup --force --remove-older-than 2W $DIRECTORY_TO_BACKUP_TO</code></pre> rdiff-backup --force --remove-older-than 2W $DIRECTORY_TO_BACKUP_TO</code></pre>
<p>The above example will backup a directory, and remove any changes from 2 weeks ago.</p> <p>The above example will backup a directory, and remove any changes from 2 weeks ago.</p>

@ -70,7 +70,7 @@
</code></pre> </code></pre>
<h2>Downsides</h2> <h2>Downsides</h2>
<p>Rsync only keeps one copy of the data, and doesn't keep the changes that were made, making it impossible* to restore a file's contents from the day previous. If this is what you're after, look at <a href="/blog/backup-with-rdiff.html">rdiff-backup</a>.</p> <p>Rsync only keeps one copy of the data, and doesn't keep the changes that were made, making it impossible* to restore a file's contents from the day previous. If this is what you're after, look at <a href="/guides/backup-with-rdiff.html">rdiff-backup</a>.</p>
<p>* Not impossible, as you <em>can</em> set rsync to do this, but it requires a bit of scripting, and isn't as easy as just running the program</p> <p>* Not impossible, as you <em>can</em> set rsync to do this, but it requires a bit of scripting, and isn't as easy as just running the program</p>
</section> </section>
</main> </main>

@ -36,40 +36,40 @@
<h2>Basic Server setup</h2> <h2>Basic Server setup</h2>
<ul> <ul>
<li>Get a server and <a href="/blog/server-install-debian.html">Install Debian</a></li> <li>Get a server and <a href="/guides/server-install-debian.html">Install Debian</a></li>
<li><a href="/blog/initial-server-setup.html">Basic Debian Server setup (with some security)</a></li> <li><a href="/guides/initial-server-setup.html">Basic Debian Server setup (with some security)</a></li>
<li>TODO:<a href="/blog/get-a-domain-name.html">Get a domain name</a></li> <li>TODO:<a href="/guides/get-a-domain-name.html">Get a domain name</a></li>
<li><a href="/blog/add-domain-to-server.html">Connect your server and domain name</a></li> <li><a href="/guides/add-domain-to-server.html">Connect your server and domain name</a></li>
<li>TODO:<a href="/blog/port-forwarding.html">Port Forwarding (home server)</a></li> <li>TODO:<a href="/guides/port-forwarding.html">Port Forwarding (home server)</a></li>
</ul> </ul>
<p>Now you officially own, and have setup a server. Currently all you can do is SSH into it though, so let's get some services on there</p> <p>Now you officially own, and have setup a server. Currently all you can do is SSH into it though, so let's get some services on there</p>
<h2>Nginx Webserver</h2> <h2>Nginx Webserver</h2>
<p>A great first service for any server is a website, even if it's just a little page to let people know you own the server/domain name</p> <p>A great first service for any server is a website, even if it's just a little page to let people know you own the server/domain name</p>
<ul> <ul>
<li><a href="/blog/nginx-install.html">Install nginx</a></li> <li><a href="/guides/nginx-install.html">Install nginx</a></li>
<li><a href="/blog/setup-nginx-website.html">Setup an nginx website</a></li> <li><a href="/guides/setup-nginx-website.html">Setup an nginx website</a></li>
<li><a href="/blog/certbot-ssl.html">Add an SSL certificate w/Certbot</a></li> <li><a href="/guides/certbot-ssl.html">Add an SSL certificate w/Certbot</a></li>
<li><a href="/blog/nginx-web-optimisation.html">TODO: Nginx web optimisation</a></li> <li><a href="/guides/nginx-web-optimisation.html">TODO: Nginx web optimisation</a></li>
<li>TODO:<a href="/blog/add-php-to-nginx.html">(Optional) Add PHP to your webserver</a></li> <li>TODO:<a href="/guides/add-php-to-nginx.html">(Optional) Add PHP to your webserver</a></li>
<li>TODO:Guide to front-end web development</li> <li>TODO:Guide to front-end web development</li>
</ul> </ul>
<h2>MariaDB Database</h2> <h2>MariaDB Database</h2>
<p>A database is a great tool to store, access, and filter data. Typically used alongside a website, or other services, but can be useful standalone if you know what you're doing</p> <p>A database is a great tool to store, access, and filter data. Typically used alongside a website, or other services, but can be useful standalone if you know what you're doing</p>
<ul> <ul>
<li><a href="/blog/install-mysql-mariadb.html">Install mariaDB</a></li> <li><a href="/guides/install-mysql-mariadb.html">Install mariaDB</a></li>
<li>TODO:<a href="/blog/sql-cheatsheet.html">SQL cheatsheet</a></li> <li>TODO:<a href="/guides/sql-cheatsheet.html">SQL cheatsheet</a></li>
<li>TODO:<a href="/blog/adminer-setup.html">(Optional) Adminer setup</a></li> <li>TODO:<a href="/guides/adminer-setup.html">(Optional) Adminer setup</a></li>
<li>TODO:<a href="/blog/backup-mysql-mariadb.html">(Optional) Backup databases</a></li> <li>TODO:<a href="/guides/backup-mysql-mariadb.html">(Optional) Backup databases</a></li>
</ul> </ul>
<h2>Backup your server!</h2> <h2>Backup your server!</h2>
<p>Backups are super useful. If something breaks, or gets accidentally deleted you can always use a backup to get it back</p> <p>Backups are super useful. If something breaks, or gets accidentally deleted you can always use a backup to get it back</p>
<ul> <ul>
<li>TODO:<a href="/blog/backup-with-rsync.html">Backup with rsync</a></li> <li>TODO:<a href="/guides/backup-with-rsync.html">Backup with rsync</a></li>
<li>TODO:<a href="/blog/backup-with-rdiff.html">Backup with rdiff-backup</a></li> <li>TODO:<a href="/guides/backup-with-rdiff.html">Backup with rdiff-backup</a></li>
<li>TODO:<a href="/blog/backup-with-cron.html">Setup backup cronjob(s)</a></li> <li>TODO:<a href="/guides/backup-with-cron.html">Setup backup cronjob(s)</a></li>
</ul> </ul>
@ -77,24 +77,24 @@
<h2>Run virtual machines</h2> <h2>Run virtual machines</h2>
<p>Virtual machines allow you to use your server as multiple servers at once, with different operating systems, services, files, etc. If you're self-hosting this is a great way to separate concerns, having one system for each distinct task.</p> <p>Virtual machines allow you to use your server as multiple servers at once, with different operating systems, services, files, etc. If you're self-hosting this is a great way to separate concerns, having one system for each distinct task.</p>
<ul> <ul>
<li>TODO:<a href="/blog/setup-qemu-kvm.html">Setup Qemu/KVM</a></li> <li>TODO:<a href="/guides/setup-qemu-kvm.html">Setup Qemu/KVM</a></li>
<li>TODO:<a href="/blog/setup-kvm-bridge.html">Setup a bridged adapter</a></li> <li>TODO:<a href="/guides/setup-kvm-bridge.html">Setup a bridged adapter</a></li>
<li>TODO:<a href="/blog/install-kvm-virtual-machine.html">Install a virtual machine</a></li> <li>TODO:<a href="/guides/install-kvm-virtual-machine.html">Install a virtual machine</a></li>
<li>TODO:<a href="/blog/virsh-cheatsheet.html">Virsh cheatsheet</a></li> <li>TODO:<a href="/guides/virsh-cheatsheet.html">Virsh cheatsheet</a></li>
<li>TODO:<a href="/blog/vm-seperation-of-concerns">Example of Separation of Concerns (SoC)</a></li> <li>TODO:<a href="/guides/vm-seperation-of-concerns">Example of Separation of Concerns (SoC)</a></li>
</ul> </ul>
<h2>Additional services/potential guides</h2> <h2>Additional services/potential guides</h2>
<p>Unless there is an anchor, these are all "TODO", and may just be omitted from this list</p> <p>Unless there is an anchor, these are all "TODO", and may just be omitted from this list</p>
<h3>Useful tidbits</h3> <h3>Useful tidbits</h3>
<ul> <ul>
<li><a href="/blog/nginx-proxy.html">Proxy services with NGINX proxy pass</a></li> <li><a href="/guides/nginx-proxy.html">Proxy services with NGINX proxy pass</a></li>
<li><a href="/blog/password-protect-webpage.html">Password protect webpages</a></li> <li><a href="/guides/password-protect-webpage.html">Password protect webpages</a></li>
</ul> </ul>
<h3>Additional Services</h3> <h3>Additional Services</h3>
<ul> <ul>
<li><a href="/blog/setup-git-server.html">git</a></li> <li><a href="/guides/setup-git-server.html">git</a></li>
<li>samba</li> <li>samba</li>
<li>Open Media Vault</li> <li>Open Media Vault</li>
<li>umami</li> <li>umami</li>

@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A collection of typically tech related guides, authored by Aney.">
<meta name="author" content="Nathan (Aney) Steel">
<meta name="theme-color" content="white">
<meta name="theme-color" content="black">
<link rel="stylesheet" type="text/css" href="/main.css">
<link rel="icon" type="image/png" href="/images/favicon.svg">
<title>Aney's Guides</title>
</head>
<body>
<header>
<h1>Aney's Guides</h1>
<hr/>
<nav>
<a href="/">home</a>
<a href="/equipment.html">equipment</a>
<a href="/projects.html">projects</a>
<a href="/blog/">blog</a>
<a href="/sitemap.html">misc</a>
<a href="/support.html">support</a>
</nav>
<hr/>
</header>
<main>
<section>
<h2>2022</h2>
<ul>
<li><a href="/guides/password-protect-webpage.html">Password protect webpages</a> - (WIP)14/09/2022</li>
<li><a href="/guides/nginx-proxy.html">Proxy services with Nginx</a> - (WIP)14/09/2022</li>
<li><a href="/guides/install-kvm-virtual-machine.html">Install a KVM Virtual Machine</a> - (WIP)14/09/2022</li>
<li><a href="/guides/setup-git-server.html">Setup git server</a> - 13/09/2022</li>
<li><a href="/guides/backup-with-cron.html">Automate Backups with Cron</a> - 26/08/2022</li>
<li><a href="/guides/server-install-debian.html">Debian Install Guide (for Server)</a> - 22/08/2022</li>
<li><a href="/guides/set-static-ip.html">How to set a static IP</a> - 22/08/2022</li>
<li><a href="/guides/vm-seperation-of-concerns.html">VM Seperation of Concerns</a> - 29/07/2022</li>
<li><a href="/guides/setup-kvm-bridge.html">Setup a KVM bridge</a> - 29/07/2022</li>
<li><a href="/guides/virsh-cheatsheet.html">Virsh Cheatsheet</a> - 29/07/2022</li>
<li><a href="/guides/setup-qemu-kvm.html">Install KVM for virtualisation</a> - 29/07/2022</li>
<li><a href="/guides/backup-with-rdiff.html">Backup files with rdiff</a> - 17/07/2022</li>
<li><a href="/guides/backup-with-rsync.html">Backup files with rsync</a> - 17/07/2022</li>
<li><a href="/guides/add-php-to-nginx.html">PHP on Nginx setup</a> - 10/06/2022</li>
<li><a href="/guides/sql-cheatsheet.html">SQL Cheatsheet</a> - 09/06/2022</li>
<li><a href="/guides/adminer-setup.html">Adminer Setup</a> - 09/06/2022</li>
<li><a href="/guides/backup-mysql-mariadb.html">Backing Up MySQL/MariaDB</a> - 09/06/2022</li>
<li><a href="/guides/install-mysql-mariadb.html">MySQL/MariaDB Setup Guide</a> - 09/06/2022</li>
<li><a href="/guides/nginx-web-optimisation.html">NGINX web optimisation</a> - 30/05/2022</li>
<li><a href="/guides/certbot-ssl.html">Setup SSL with Certbot</a> - 30/05/2022</li>
<li><a href="/guides/setup-nginx-website.html">How to setup an nginx website</a> - 30/05/2022</li>
<li><a href="/guides/nginx-install.html">How to install an nginx webserver</a> - 30/05/2022</li>
<li><a href="/guides/get-a-domain-name.html">How to purchase a domain name</a> - 30/05/2022</li>
<li><a href="/guides/add-domain-to-server.html">Link your domain name to your server</a> - 24/05/2022</li>
<li><a href="/guides/initial-server-setup.html">Debian Server Setup</a> - 24/05/2022</li>
<li><a href="/guides/guide-to-server-hosting.html">Aney's guide to server hosting</a> - 24/05/2022</li>
</ul>
</section>
</main>
<footer>
<hr/>
<p>Written by <a href="http://aney.co.uk" target="_blank" rel="noopener">@aney</a> with <a href="https://danluu.com/web-bloat/" target="_blank" rel="noopener">web bloat</a> in mind | <a href="https://github.com/Aney/website" target="_blank" rel="noopener">Source Code</a></p>
</footer>
</body>
</html>

@ -42,7 +42,7 @@
sudo systemctl start nginx</code></pre> sudo systemctl start nginx</code></pre>
<h2>Enable the http port</h2> <h2>Enable the http port</h2>
<p>If you have UFW installed ala the <a href="/blog/initial-server-setup.html">initial server setup</a> guide you'll need to open the http port on the server</p> <p>If you have UFW installed ala the <a href="/guides/initial-server-setup.html">initial server setup</a> guide you'll need to open the http port on the server</p>
<pre><code>sudo ufw allow 80</code></pre> <pre><code>sudo ufw allow 80</code></pre>
<p>or</p> <p>or</p>
<pre><code>sudo ufw allow http</code></pre> <pre><code>sudo ufw allow http</code></pre>
@ -63,7 +63,7 @@ sudo systemctl start nginx</code></pre>
<section> <section>
<h2>Next...</h2> <h2>Next...</h2>
<p><a href="/blog/setup-nginx-website.html">Setup an nginx website</a></p> <p><a href="/guides/setup-nginx-website.html">Setup an nginx website</a></p>
</section> </section>
</main> </main>

@ -39,7 +39,7 @@
<pre><code>ip a</code></pre> <pre><code>ip a</code></pre>
<h2>Bridge it</h2> <h2>Bridge it</h2>
<p>This will be familiar to those who have <a href="/blog/set-static-ip.html">set a static ip</a> on linux, as it's essentially the same, with a few additional lines related to bridging</p> <p>This will be familiar to those who have <a href="/guides/set-static-ip.html">set a static ip</a> on linux, as it's essentially the same, with a few additional lines related to bridging</p>
<p>This can be done by editing <strong>/etc/network/interfaces</strong></p> <p>This can be done by editing <strong>/etc/network/interfaces</strong></p>
<pre><code>sudo vim /etc/network/interfaces</code></pre> <pre><code>sudo vim /etc/network/interfaces</code></pre>
<p>And setting the following lines<p> <p>And setting the following lines<p>

@ -42,7 +42,7 @@
<li>What's in your OneBag?</li> <li>What's in your OneBag?</li>
<li>Why does your website look like that?</li> <li>Why does your website look like that?</li>
<li>Anime recommendations?</li> <li>Anime recommendations?</li>
<li><a href="/blog/guide-to-server-hosting.html">How can I setup a server?</a></li> <li><a href="/guides/guide-to-server-hosting.html">How can I setup a server?</a></li>
</ul> </ul>
<h3>Where are the pictures?</h3> <h3>Where are the pictures?</h3>

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A collection of recipes used, written, and altered by Aney. Bone jaw, I'm the chef.">
<meta name="author" content="Nathan (Aney) Steel">
<meta name="theme-color" content="white">
<meta name="theme-color" content="black">
<link rel="stylesheet" type="text/css" href="/main.css">
<link rel="icon" type="image/png" href="/images/favicon.svg">
<title>Aney's Recipes</title>
</head>
<body>
<header>
<h1>Aney's Recipes</h1>
<hr/>
<nav>
<a href="/">home</a>
<a href="/equipment.html">equipment</a>
<a href="/projects.html">projects</a>
<a href="/blog/">blog</a>
<a href="/sitemap.html">misc</a>
<a href="/support.html">support</a>
</nav>
<hr/>
</header>
<main>
<section>
</section>
</main>
<footer>
<hr/>
<p>Written by <a href="http://aney.co.uk" target="_blank" rel="noopener">@aney</a> with <a href="https://danluu.com/web-bloat/" target="_blank" rel="noopener">web bloat</a> in mind | <a href="https://github.com/Aney/website" target="_blank" rel="noopener">Source Code</a></p>
</footer>
</body>
</html>

@ -49,6 +49,8 @@
<li><a href="/blog/ive-started-a-blog.html">I've started a blog</a></li> <li><a href="/blog/ive-started-a-blog.html">I've started a blog</a></li>
</ul> </ul>
</li> </li>
<li><a href="/guides/">guides</a></li>
<li><a href="/recipes/">recipes</a></li>
</ul> </ul>
</section> </section>
</main> </main>

Loading…
Cancel
Save