Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
37b76c7c0c
3 changed files with 39 additions and 0 deletions
34
README.md
Normal file
34
README.md
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# Cheri's site? omg!
|
||||||
|
|
||||||
|
This is the code for building my personal website, with the contents itself and everything.
|
||||||
|
Go check it out at https://cheri.pink
|
||||||
|
|
||||||
|
It is still a pretty significantly a work in progress, things will probably be shufled around here later and such.
|
||||||
|
But for now -
|
||||||
|
|
||||||
|
### Building and running live
|
||||||
|
just
|
||||||
|
|
||||||
|
Initially, to install dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
To run the project locally live
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm start
|
||||||
|
```
|
||||||
|
|
||||||
|
To build:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run build
|
||||||
|
```
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
|
||||||
|
This code/template is licensed under the Blue Oak Model License 1.0.0.
|
||||||
|
But if you want to reuse this, like, clean out /src/media and basically all the .md files and fill in /src/_data/site.json with your own stuff instead lol.
|
BIN
src/media/my-blog-is-safe.png
Normal file
BIN
src/media/my-blog-is-safe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 KiB |
|
@ -2,5 +2,10 @@
|
||||||
layout: base.njk
|
layout: base.njk
|
||||||
permalink: /posts/
|
permalink: /posts/
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<center><h1>My blog posts :3</h1></center>
|
||||||
|
|
||||||
{% set listposts = collections.posts %}
|
{% set listposts = collections.posts %}
|
||||||
{% include "listposts.njk" %}
|
{% include "listposts.njk" %}
|
||||||
|
|
||||||
|
<center><img src="/media/my-blog-is-safe.png" alt="Tumblr post reading: my blog is a safe space for me. the rest of you are in danger i think" width="500"></center>
|
||||||
|
|
Loading…
Reference in a new issue