-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add inital mkdocs config and overrides
- Loading branch information
Showing
4 changed files
with
143 additions
and
0 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,81 @@ | ||
site_name: أسس ترجمة | ||
site_url: https://translation.aosus.org | ||
repo_name: aosus/translation.aosus.org | ||
repo_url: https://github.com/aosus/translation.aosus.org | ||
site_description: صفحة مخصصه لجهود البرمجة في مجتمع أسس. | ||
docs_dir: source | ||
|
||
plugins: | ||
- autolinks | ||
- search | ||
- git-revision-date-localized: | ||
type: timeago | ||
- minify: | ||
minify_html: true | ||
|
||
theme: | ||
name: material | ||
custom_dir: overrides | ||
logo: images/Discourse_Bridge.webp | ||
icon: | ||
repo: fontawesome/brands/github | ||
font: false | ||
features: | ||
- search.suggest | ||
- search.highlight | ||
- content.tabs.link | ||
- navigation.instant | ||
- navigation.tracking | ||
- toc.integrate | ||
palette: | ||
# Palette toggle for light mode | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
toggle: | ||
icon: material/brightness-7 | ||
name: Switch to dark mode | ||
primary: green | ||
accent: blue | ||
|
||
# Palette toggle for dark mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
toggle: | ||
icon: material/brightness-4 | ||
name: Switch to light mode | ||
primary: green | ||
accent: blue | ||
|
||
|
||
extra: | ||
alternate: | ||
- name: English | ||
link: / | ||
lang: en | ||
|
||
- name: العربية | ||
link: /ar/ | ||
lang: ar | ||
|
||
social: | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/aosus | ||
- icon: fontawesome/brands/twitter | ||
link: https://twitter.com/2linuxorg | ||
- icon: fontawesome/brands/mastodon | ||
link: https://mastodon.online/@aosus | ||
- icon: fontawesome/brands/telegram | ||
link: https://t.me/aosus | ||
- icon: matrix | ||
link: https://matrix.to/#/#aosus:aosus.org | ||
- icon: fontawesome/brands/linkedin | ||
link: https://www.linkedin.com/company/aosus/ | ||
|
||
markdown_extensions: | ||
- admonition | ||
|
||
extra_css: | ||
- extra.css | ||
|
||
nav: | ||
- الرئيسية: "index.md" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 url("https://aosus.org/fonts/fonts.css"); | ||
|
||
:root { | ||
--md-text-font: "Almarai"; | ||
} |
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 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block analytics %} | ||
<script defer data-domain="translation.aosus.org" src="https://pa.aosus.org/js/pls4.js"></script> | ||
{% endblock %} |