| Commit message (Collapse) | Author | Age | Lines |
| |
|
|
|
|
|
| |
Adjusted box-shadow for dark mode to be more readable, unfortunately
this gave it a little neomorphism effect...
|
|
|
|
|
|
|
|
|
|
| |
...which are unreadable in dark mode, use `has-dark-mode-background`
class.
{: class="has-dark-mode-background" }
Like this. And it will be given a nice light gray background and a
subtle padding & border.
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* removing padding-right from discord button in nav
* fixing dropdown menu on contributing page for sub-articles
* Revert "fixing dropdown menu on contributing page for sub-articles"
This reverts commit 2d158ddbb8f1d27dd7d8b0b9282554365cf042e3.
* fixing dropdown menu on contributing page for sub-articles
* Revert "removing padding-right from discord button in nav"
This reverts commit e6642932611de307f5386928be0a1dd7e94cd134.
* lint fix
* fixing dropdown menu for mobile screen
* Update pydis_site/static/css/content/page.css
Co-authored-by: wookie184 <[email protected]>
---------
Co-authored-by: wookie184 <[email protected]>
|
| | |
|
| | |
|
|/ |
|
|
|
|
| |
section(python-discord#1036)
|
| |
|
| |
|
|
|
|
|
|
|
| |
Uses the commit API to obtain tag metadata such as when it was last
edited, and by whom.
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
| |
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
|
|
|
| |
Adds support for tag groups in content. This involves some modification
to the routing, and templating.
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
| |
Signed-off-by: Hassan Abouelela <[email protected]>
|
|
|
|
|
|
| |
Add a template for the tag page itself, and add a route to use it.
Signed-off-by: Hassan Abouelela <[email protected]>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Restructure bot contributing guide
Restructures the bot guide to focus on getting users "through the door" first, and slowly adding additional information and options.
The guide is built in terms of showing ways to run the bot and how to achieve it, rather than listing all of the information for each configuration and environment variable right away.
That said, the attempt was to still present the reader with the full information they need, and to still be able to use as a quick reference for contributors who are already familiar with the project.
As a style choice, this guide incorporates collapsible elements, which required some CSS and JS additions. This could be resolved with the bulma-collapsible extension, but it doesn't seem to function well inside django templates.
The guide includes an optional config.yml to use with the test server template. This is a temporary measure until we get the bootstrapping application going.
This guide additionally splits the bot account creation and obtaining Discord ID's guides and they didn't seem related. The original file is kept for now as it is used by other guides at the moment.
|
|
|
|
|
|
| |
This has a caveat in that there may be additional padding if the first
thing in a list item is an image, but it is very unlikely in practice,
so it's not handled for now.
|
| |
|
|
|
|
|
| |
Adds image caption capabilities and documents missing HTML extensions
available.
|
|
|
|
|
|
| |
This allows us to properly escape codeblocks within markdown, permalink
to headers on a page, and decouples getting metadata from a file and
getting generated HTML from the Markdown content.
|
|
|
|
|
|
| |
Articles was a good name, but we want an `articles` category in
the future. `/pages/guides/` and `/pages/articles/` are clearer in name
than `/articles/guides/` and `/articles/articles/`.
|
|
|
|
|
| |
This makes it consistent with the django-wiki version of the code
blocks, which looks neater.
|
|
As this system will be used for more than just guides,
I had to do some refactoring to match this system with plans.
Basically now there isn't guides, but articles instead.
|