diff --git a/docs/index.md b/docs/index.md index a56c793fa..5bb8084ae 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,36 +1,4 @@ --- template: home.html -title: Material for MkDocs -social: - cards_layout_options: - title: Documentation that simply works +title: Welcome --- - -Welcome to Material for MkDocs. - -# Welcome to MkDocs - -For full documentation visit [mkdocs.org](https://www.mkdocs.org). - -## Embed - - - -## Object - - -Not supported - -## Commands - -* `mkdocs new [dir-name]` - Create a new project. -* `mkdocs serve` - Start the live-reloading docs server. -* `mkdocs build` - Build the documentation site. -* `mkdocs -h` - Print help message and exit. - -## Project layout - - mkdocs.yml # The configuration file. - docs/ - index.md # The documentation homepage. - ... # Other markdown pages, images and other files. diff --git a/overrides/assets/stylesheets/home.css b/overrides/assets/stylesheets/home.css new file mode 100644 index 000000000..50dea1f7b --- /dev/null +++ b/overrides/assets/stylesheets/home.css @@ -0,0 +1,30 @@ +body { + color: #D1DAE5; + background-color: #304663; +} + +section { + display: flex; + align-items: flex-end; + flex-wrap: wrap; + gap: 16px; + margin: 0 auto; + max-width: 751px; +} + +.item { + flex-grow: 1; + flex-basis: 250px; + border-right: 1px dotted #889db8; +} + +section > *:first-child { + flex-basis: 100%; + border-right: none; + border-bottom: 1px dotted #889db8; +} + +section > *:last-child { + border-right: none; +} + diff --git a/overrides/home.html b/overrides/home.html index e69de29bb..a55d18259 100644 --- a/overrides/home.html +++ b/overrides/home.html @@ -0,0 +1,29 @@ +{% extends "main.html" %} {% block extrahead %} + +{% endblock %} {% block site_nav%} {% endblock %} {% block content %} + + + + Deluge is a lightweight, Free Software, cross-platform BitTorrent client to + send or receive files across a decentralized network. + + Full Encryption + Web User Interface + Plugin System + Much more... + + Learn More + + + Get started + + Check out our guides to learn how to setup and use Deluge. + + + Download + + Deluge 2.1.1 Download now Available for Linux, macOS and Windows. + + + +{% endblock %}