summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAnton L. Šijanec <anton@sijanec.eu>2020-04-29 22:38:41 +0200
committerAnton L. Šijanec <anton@sijanec.eu>2020-04-29 22:38:41 +0200
commit52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6 (patch)
treebda89def263033aa7efc2f87e55b9c7add3013c0 /README.md
parentdelam. (diff)
downloadbverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar.gz
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar.bz2
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar.lz
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar.xz
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.tar.zst
bverbose-52a5a9d9bd8d767bd76c02f20668e1c7d92e33f6.zip
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
index 47d87c8..2aaae9b 100644
--- a/README.md
+++ b/README.md
@@ -20,3 +20,24 @@ No. bVerbose sucks. You are allowed to use it, but please don't. It is made for
You should rather use jekyll or Publii.
The aim of this is not to be better, it is worse than any other CMS.
+
+# folder structure:
+bVerbose
+├── assets (files for compiling the blog together)
+│   ├── content (user/writer-created content, bvr files and media)
+│   │   ├── authors (author's descriptions and bios)
+│   │   ├── global.bvr (file that is loaded on every page compilation)
+│   │   ├── media (images and videos, copied directly to dist)
+│   │   └── posts (pages and posts in bvr format for compiling in the blog)
+│   └── layout (theme, may be possible to create multiple themes and switch seamlessly)
+│   ├── css (css files that get bundled and minified)
+│   ├── fonts (fonts, directly copied to dist)
+│   ├── html (bvr files that make up the layout of the webpage)
+│   └── js (javascript files that get *bundled together and minified*(!))
+├── dist (output website, set as root folder of nginx)
+├── lib (libraries and other stuff I borrowed from other people)
+├── README.md (this file)
+├── src (source files in C, made by me)
+├── test (test scripts for individual functions in src and lib)
+└── tmp (temp folder of bVerbose, used whilst compiling bvr into HTML)
+