submit.html
HTML document, ASCII text, with very long lines (650)
1<!DOCTYPE html> 2<html lang="en-US"> 3 4<head> 5<title>Submit a Theme</title> 6<link rel="stylesheet" href="required.css" /> 7<link rel="stylesheet" href="style.css" defer="defer" /> 8<link rel="stylesheet" href="breadcrumbs.css" defer="defer" /> 9<link rel="stylesheet" href="code.css" defer="defer" /> 10<link rel="stylesheet" href="fonts.css" defer="defer" /> 11<meta charset="UTF-8"> 12<meta name="viewport" content="width=device-width, initial-scale=1.0"> 13<meta http-equiv="X-UA-Compatible" content="ie=edge"> 14<link rel="icon" href="favicon.icon" /> 15</head> 16 17<body> 18<nav aria-label="breadcrumbs"> 19<ol> 20<li><a href="index.html">index</a></li> 21<li><a href="submit.html" aria-current="location">Submit a Theme</a></li> 22</ol> 23</nav> 24<h1>Submitting a Theme</h1> 25<nav class="table-of-contents" aria-labelledby="toc-label"> 26<h2 id="toc-label" aria-hidden="true">Table of contents</h2> 27<ol> 28<li> 29<a href="#rules">Rules of Submitted Themes</a> 30<ol> 31<li><a href="#rule-licensing">All themes must be under a free license</a></li> 32<li><a href="#rule-unminified">Your theme must not be minified upon submitting</li> 33<li><a href="#rule-external">Your theme must use as few external resources as is possible</a></li> 34</ol> 35</li> 36<li> 37<a href="#how-to-submit">How Can I Submit My Theme?</a> 38<ol> 39<li><a href="#over-email">Over Email</a></li> 40<li><a href="#submit-with-pr">Submit with Pull Request</a></li> 41</ol> 42</li> 43</ol> 44</nav> 45<h2 id="rules">Rules of Submitted Themes</h2> 46<p>The following rules are rules that all submitted themes <i>must</i> fulfill. These rules mostly do not apply to the content of the theme, but rather are about the metadata of the theme. We may request changes for you to make in order for it to fit out layed out rules.</p> 47<ul> 48<li><strong id="rule-licensing">All themes must be under a free license</strong>. If you are unsure, take a look at <a href="https://www.gnu.org/licenses/license-list.html">Various Licenses and Comments about Them</a> on <a href="https://www.gnu.org">GNU.org</a>. Some common free licenses are the <a href="https://opensource.org/license/mit">Expact/MIT license</a>, the <a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License v3.0</a>, and the <a href="https://unlicense.org/">Unlicense</a>. It is important you understand what your license allows your theme to be used for before licensing it under that license.</li> 49<li><strong id="rule-unminified">Your theme must not be minified upon submitting.</strong> Minified themes will not be accepted; when submitting any theme to RATI, it must come non-minified.</li> 50<li><strong id="rule-external">Your theme must use as few external resources as is possible.</strong> Ideally, your theme should look at least passible if all external resources go down.</li> 51</ul> 52<h2 id="how-to-submit">How Can I Submit My Theme?</h2> 53<h3 id="over-email">Over Email</h3> 54<p>You can email your theme to <code>steve0greatnessiscool+rati[at]gmail.com</code>.</p> 55<p>When emailing it, please include this information with your theme:</p> 56<ul> 57<li>Your theme's name</li> 58<li>A link to your profile</li> 59</ul> 60<p>Also make sure to include your themes CSS file as an attachment to your email, otherwise it cannot be added.</p> 61<h3 id="submit-with-pr">Submit with Pull Request</h3> 62<p>You can also submit your theme in a PR to the repository this is hosted on <a href="https://roundabout-host.com/steve0greatness/ThemeIndex">roundabout-host.com</a> (or its mirror at <a href="https://codeberg.org/Steve0Greatness/ThemeIndex">Codeberg</a>). You may also submit a patch over email.</p> 63<p>Simply place your theme CSS file under <code>themes/<your username></code>. If you don't already have a directory under themes, please create one.</p> 64<p>This meta data should be as follows:</p> 65<code class="preformatted-text"><<span class="lang-element">theme</span>> 66<<span class="lang-element">title</span>>{Theme Name}</<span class="lang-element">title</span>> 67<<span class="lang-element">author</span> 68<span class="lang-attribute">uri</span>=<span class="lang-string">"https://{profile link}"</span> 69<span class="lang-attribute">instance</span>=<span class="lang-string">"{profile instance}"</span> 70<span class="lang-attribute">username</span>=<span class="lang-string">"{author username}"</span> 71>{Author display name}</<span class="lang-element">author</span>> 72<<span class="lang-element">uri</span>>{pathto/theme.css}</<span class="lang-element">uri</span>> 73</<span class="lang-element">theme</span>></code> 74</body> 75 76</html> 77