-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
576 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.vitepress/cache | ||
.vitepress/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { defineConfig } from 'vitepress' | ||
import en from './locales/en' | ||
import ru from './locales/ru' | ||
|
||
export default defineConfig({ | ||
title: 'Mafl', | ||
base: '/mafl/', | ||
themeConfig: { | ||
search: { | ||
provider: 'local', | ||
}, | ||
|
||
logo: { | ||
src: '/logotype.svg', | ||
innerWidth: 50, | ||
height: 50, | ||
}, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/hywax/mafl' }, | ||
], | ||
}, | ||
|
||
locales: { | ||
root: { label: 'English', ...en }, | ||
ru: { label: 'Русский', ...ru }, | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { getVersion } from '../utils' | ||
|
||
export default defineConfig({ | ||
description: 'Intuitive service for organizing your homepage', | ||
lang: 'en-US', | ||
themeConfig: { | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Configuration', link: '/reference/configuration' }, | ||
{ text: 'Showcase', link: '/community/showcase' }, | ||
{ | ||
text: getVersion(), | ||
items: [ | ||
{ text: 'Changelog', link: '/other/changelog' }, | ||
{ text: 'Contributing', link: '/community/contributing' }, | ||
], | ||
}, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Guide', | ||
base: '/guide', | ||
items: [ | ||
{ text: 'What is Mafl?', link: '/what-is' }, | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: 'Deployment', link: '/deployment' }, | ||
], | ||
}, | ||
{ | ||
text: 'Reference', | ||
base: '/reference', | ||
items: [ | ||
{ text: 'Configuration', link: '/configuration' }, | ||
], | ||
}, | ||
{ | ||
text: 'Services', | ||
base: '/services', | ||
items: [ | ||
{ text: 'Base', link: '/base' }, | ||
], | ||
}, | ||
{ | ||
text: 'Community', | ||
base: '/community', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Showcase', link: '/showcase' }, | ||
{ text: 'Development', link: '/development' }, | ||
{ text: 'Contributing', link: '/contributing' }, | ||
], | ||
}, | ||
{ | ||
text: 'Other', | ||
base: '/other', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Changelog', link: '/changelog' }, | ||
{ text: 'License', link: '/license' }, | ||
], | ||
}, | ||
], | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { getVersion } from '../utils' | ||
|
||
export default defineConfig({ | ||
description: 'Intuitive service for organizing your homepage', | ||
lang: 'ru-RU', | ||
themeConfig: { | ||
nav: [ | ||
{ text: 'Home', link: '/ru/' }, | ||
{ text: 'Configuration', link: '/ru/reference/configuration' }, | ||
{ text: 'Showcase', link: '/ru/community/showcase' }, | ||
{ | ||
text: getVersion(), | ||
items: [ | ||
{ text: 'Changelog', link: '/ru/other/changelog' }, | ||
{ text: 'Contributing', link: '/ru/community/contributing' }, | ||
], | ||
}, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Guide', | ||
base: '/ru/guide', | ||
items: [ | ||
{ text: 'What is Mafl?', link: '/what-is' }, | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: 'Deployment', link: '/deployment' }, | ||
], | ||
}, | ||
{ | ||
text: 'Reference', | ||
base: '/ru/reference', | ||
items: [ | ||
{ text: 'Configuration', link: '/configuration' }, | ||
], | ||
}, | ||
{ | ||
text: 'Services', | ||
base: '/ru/services', | ||
items: [ | ||
{ text: 'Base', link: '/base' }, | ||
], | ||
}, | ||
{ | ||
text: 'Community', | ||
base: '/ru/community', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Showcase', link: '/showcase' }, | ||
{ text: 'Development', link: '/development' }, | ||
{ text: 'Contributing', link: '/contributing' }, | ||
], | ||
}, | ||
{ | ||
text: 'Other', | ||
base: '/ru/other', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Changelog', link: '/changelog' }, | ||
{ text: 'License', link: '/license' }, | ||
], | ||
}, | ||
], | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
:root { | ||
--vp-c-brand-1: #91c198; | ||
--vp-c-brand-2: #7cb484; | ||
--vp-c-brand-3: #609966; | ||
--vp-c-brand-soft: #eaf4ec; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import DefaultTheme from 'vitepress/theme' | ||
import './custom.css' | ||
|
||
export default DefaultTheme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import currentPackage from '../../../package.json' | ||
|
||
export function getVersion() { | ||
return currentPackage.version || '0.0.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mafl.hywax.space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Contributing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Showcase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Getting Started |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# What is Mafl? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
layout: home | ||
|
||
hero: | ||
name: "Mafl" | ||
text: "Documentation" | ||
tagline: Intuitive service for organizing your homepage | ||
actions: | ||
- theme: brand | ||
text: Getting started | ||
link: /guide/getting-started | ||
- theme: alt | ||
text: What is Mafl? | ||
link: /guide/what-is | ||
- theme: alt | ||
text: View on GitHub | ||
link: https://github.com/hywax/mafl | ||
|
||
features: | ||
- title: Privacy | ||
icon: 🔐 | ||
details: All requests to third-party services occur in backend. | ||
- title: Real-time | ||
icon: ⚡ | ||
details: Interactive cards with extra information. | ||
- title: Multi-language | ||
icon: 🌎 | ||
details: Supports multiple languages. | ||
- title: Themes | ||
icon: 🎨 | ||
details: Customize the look to your liking. | ||
- title: Grouping | ||
icon: 🗂 | ||
details: Create custom service groups. | ||
- title: Easy setup | ||
icon: 👌 | ||
details: A few lines of yaml and your homepage is ready to go. | ||
- title: Fast | ||
icon: 🚀 | ||
details: Everything is fast and free of hang-ups. | ||
- title: Docker | ||
icon: 🐳 | ||
details: Optimized docker images for popular platforms. | ||
- title: Free | ||
icon: ✨ | ||
details: Mafl is completely free and open source. | ||
- title: PWA | ||
icon: 📲 | ||
details: Installable application. | ||
--- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Contributing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Showcase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Getting Started |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# What is Mafl? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
layout: home | ||
|
||
hero: | ||
name: "Mafl" | ||
text: "Documentation" | ||
tagline: Intuitive service for organizing your homepage | ||
actions: | ||
- theme: brand | ||
text: Getting started | ||
link: /ru/guide/getting-started | ||
- theme: alt | ||
text: What is Mafl? | ||
link: /ru/guide/what-is | ||
- theme: alt | ||
text: View on GitHub | ||
link: https://github.com/hywax/mafl | ||
|
||
features: | ||
- title: Privacy | ||
icon: 🔐 | ||
details: All requests to third-party services occur in backend. | ||
- title: Real-time | ||
icon: ⚡ | ||
details: Interactive cards with extra information. | ||
- title: Multi-language | ||
icon: 🌎 | ||
details: Supports multiple languages. | ||
- title: Themes | ||
icon: 🎨 | ||
details: Customize the look to your liking. | ||
- title: Grouping | ||
icon: 🗂 | ||
details: Create custom service groups. | ||
- title: Easy setup | ||
icon: 👌 | ||
details: A few lines of yaml and your homepage is ready to go. | ||
- title: Fast | ||
icon: 🚀 | ||
details: Everything is fast and free of hang-ups. | ||
- title: Docker | ||
icon: 🐳 | ||
details: Optimized docker images for popular platforms. | ||
- title: Free | ||
icon: ✨ | ||
details: Mafl is completely free and open source. | ||
- title: PWA | ||
icon: 📲 | ||
details: Installable application. | ||
--- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.