Browse Source

Update README.md

Vova Tkach 5 years ago
parent
commit
71c06f7fac
1 changed files with 32 additions and 27 deletions
  1. 32 27
      README.md

+ 32 - 27
README.md

@@ -20,33 +20,38 @@ Usage of ./fave:
 ## Hosts structure
 ## Hosts structure
 ```
 ```
 hosts
 hosts
-├── localhost              # Main host directory
+├── localhost               # Main host directory
-├──── config               # Config directory
+├──── config                # Config directory
-├────── .domains           # Attached domains
+├────── .domains            # Attached domains
-├────── config.json        # CMS config file
+├────── config.json         # CMS config file
-├────── mysql.json         # MySQL config file
+├────── mysql.json          # MySQL config file
-├──── htdocs               # Public http files
+├──── htdocs                # Public http files
-├──── logs                 # Logs dir
+├──── logs                  # Logs dir
-├────── access.log         # Access log file
+├────── access.log          # Access log file
-├────── error.log          # Error log file
+├────── error.log           # Error log file
-├──── template             # Engine templates
+├──── template              # Engine templates
-├────── 404.html           # Template for 404 page
+├────── 404.html            # Template for 404 page
-├────── blog-category.html # Template for blog category
+├────── blog-category.html  # Template for blog category
-├────── blog-post.html     # Template for blog post
+├────── blog-post.html      # Template for blog post
-├────── blog.html          # Template for blog home page
+├────── blog.html           # Template for blog home page
-├────── footer.html        # Footer
+├────── cached-block-1.html # Cached block 1
-├────── header.html        # Header
+├────── cached-block-2.html # Cached block 2
-├────── index.html         # Template for home page
+├────── cached-block-3.html # Cached block 3
-├────── page.html          # Template for any other pages
+├────── cached-block-4.html # Cached block 4
-├────── robots.txt         # Host robots.txt file
+├────── cached-block-5.html # Cached block 5
-├────── scripts.js         # Theme scripts file
+├────── footer.html         # Footer
-├────── shop-category.html # Template for shop category
+├────── header.html         # Header
-├────── shop-product.html  # Template for shop product
+├────── index.html          # Template for home page
-├────── shop.html          # Template for shop home page
+├────── page.html           # Template for any other pages
-├────── sidebar-left.html  # Can be included in templates
+├────── robots.txt          # Host robots.txt file
-├────── sidebar-right.html # Can be included in templates
+├────── scripts.js          # Theme scripts file
-├────── styles.css         # Theme styles file
+├────── shop-category.html  # Template for shop category
-└──── tmp                  # Temporary dir for session files
+├────── shop-product.html   # Template for shop product
+├────── shop.html           # Template for shop home page
+├────── sidebar-left.html   # Can be included in templates
+├────── sidebar-right.html  # Can be included in templates
+├────── styles.css          # Theme styles file
+└──── tmp                   # Temporary dir for session files
 ```
 ```
 Unlimited hosts count. Template variables in [Wiki](https://github.com/vladimirok5959/golang-fave/wiki) or [here](https://github.com/vladimirok5959/golang-fave/wiki/Variables-for-template-($.Data)) and [here](https://github.com/vladimirok5959/golang-fave/wiki/Variables-for-template-($.System)).<br>
 Unlimited hosts count. Template variables in [Wiki](https://github.com/vladimirok5959/golang-fave/wiki) or [here](https://github.com/vladimirok5959/golang-fave/wiki/Variables-for-template-($.Data)) and [here](https://github.com/vladimirok5959/golang-fave/wiki/Variables-for-template-($.System)).<br>
 Docker image: [https://hub.docker.com/r/vladimirok5959/fave](https://hub.docker.com/r/vladimirok5959/fave)
 Docker image: [https://hub.docker.com/r/vladimirok5959/fave](https://hub.docker.com/r/vladimirok5959/fave)