Replies: 3 comments 7 replies
-
What type of framework you will used to build a static website based on markdown?
|
Beta Was this translation helpful? Give feedback.
-
I need to re-structured our metaphor directories: Directory Level 1 ├── assets
├── docs
├── README.md
├── metaphor.png
├── LICENSE
├── LOGO.md
├── _config-dev.yml
├── _config.yml
├── Gemfile
├── Gemfile.lock
├── index.md
├── _stories
├── _layouts
├── _sass
└── _site Explaination Of Directory Level 1 This directories below is a jekyll directory structure with ├── _config-dev.yml <-- for local development
├── _config.yml <-- for production deployment
├── Gemfile
├── Gemfile.lock
├── index.md
├── _metaphors <-- this our metaphor collections
├── _layouts
├── _sass
└── _site This directories below is a navigation permalinks that displayed in sidebar navigation for each metaphor categories. Each file is represent a page, and each page list all metaphors from docs
├── css.md
├── java.md
├── javascript.md
├── maths.md
├── php.md
├── physics.md
├── python.md
├── ruby.md
├── rust.md
└── zig.md And the last things in directory level 1 is ├── assets Directory Level 2 _layouts
└── post.html <-- custom single post layout
_stories <-- contains metaphor from our punk in each categories
├── css
│ └── index.html <-- each index.html keep directory is not empty
├── java
│ └── index.html
├── javascript
│ ├── 2023-02-24-javascript-metaphor.md <-- sample metaphor that generate from github action when issue is closed
│ └── index.html
├── maths
│ └── index.html
├── php
│ └── index.html
├── physics
│ └── index.html
├── python
│ └── index.html
├── ruby
│ └── index.html
├── rust
│ └── index.html
└── zig
└── index.html
_sass
└── custom
└── custom.scss <-- our custom stylesheets How to each metaphor have ---
layout: post
title: <title-from-issue-metaphor-name>
author: <username-of-issue-creator>
created_at: <issue-timestamp>
language: <issue-label>
--- So.. in my opinion, What if we use the issue template as a form to create posts for the website. We can create individual forms for each language category with I can't implement our Github Action right now because it needs a special format and agreement to be able to run websites from this repository. |
Beta Was this translation helpful? Give feedback.
-
Now metaphor website is live! with comment section on the bottom of each content story. |
Beta Was this translation helpful? Give feedback.
-
We need to define a strategy to clarify the collection directories.
Beta Was this translation helpful? Give feedback.
All reactions