.github | ||
content | ||
po | ||
sass | ||
static | ||
templates | ||
tools | ||
.gitignore | ||
.jsbeautifyrc | ||
.po4a.cfg | ||
.stylelintrc.json | ||
AUTHORS.md | ||
config.toml | ||
fix_news_translations.sh | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
TRANSLATIONS.md | ||
update_news.js |
Organic Maps Website
This static website is built with Zola and Cloudflare Pages.
Development
Download the latest zola (version 0.17.2 at the time of writing) for your operating system and set up the necessary path variable.
Run zola serve
for a local preview or zola build
to generate static site in the public
folder.
Run npm i && npm run format
when you want to pretty-format the Markdown and SCSS files.
Upgrade npm dependencies with npm run upgrade
, make sure that you have installed npm-check-updates
package.
Deployment
Every PR deploys a preview version of the site at unique url.
Every merge into the master branch deploys changes into the production at https://organicmaps.app
Updating News
Run npm run news
to automatically download news from our Telegram channel,
then create a git commit and push it.
Taxonomy and F.A.Q. architecture
Each MD page in /faq/
has one or more taxonomy defined in header. E.g.:
taxonomies:
faq: ["Android"]
Zola collects all such taxonomies:
File | Taxonomy key | Taxonomy value |
---|---|---|
android-lags.md | faq |
Android |
android-logs.md | faq |
Android |
general-team.md | faq |
General |
general-bugreport.md | faq |
General |
ios-versions.md | faq |
iOS |
map-longtap.md | faq |
Map |
... | ... | ... |
After that Zola gets all values for faq
taxonomy: [General, Android, iOS, Map, ...]
. And generates pages:
- For key
/faq/
with the list of values (seetemplates/faq/list.html
) - For each value
/faq/general
,/faq/android
, etc. with the list of questions (seetemplates/faq/single.html
)
If you want to add new question then create .md file with header:
taxonomies:
faq: ["iOS"]
Zola will add your question to specific F.A.Q. sub-page.
Limitation: List of taxonomies at /faq/
page is always alphabetical. So 'Android' is always the first, 'Bookmarks' is the second, 'General' is the third and so on.
Limitation: You can't sort questions at any F.A.Q. sub-page. So questions at /faq/general
are always sorted by filename. We can create additional extra field like extra.order
and sort questions by this field. But reordering would be hard.
Limitation: Each F.A.Q. sub-page has only a name. No description, no icon. Only name 'Android', or 'iOS', or 'Routing', etc.
Contribution
Any good ideas and help with web site improvement are appreciated. And it's always better to discuss any improvement before implementing it to sync with our vision and plans.
Translations
Please help us with translating this web-site in your language. See TRANSLATIONS.md file for detailed instructions.