submit.html
HTML document, ASCII text, with very long lines (324)
1<!DOCTYPE html> 2<html lang="en-US"> 3 4<head> 5<title>Submit a Theme</title> 6<link rel="stylesheet" href="style.css" /> 7<meta charset="UTF-8"> 8<meta name="viewport" content="width=device-width, initial-scale=1.0"> 9<meta http-equiv="X-UA-Compatible" content="ie=edge"> 10<link rel="icon" href="favicon.icon" /> 11</head> 12 13<body> 14<nav aria-label="breadcrumbs"> 15<ol> 16<li><a href="index.html">index</a></li> 17<li><a href="submit.html" aria-current="location">Submit a Theme</a></li> 18</ol> 19</nav> 20<h1>Submitting a Theme</h1> 21<h2 id="over-email">Over Email</h2> 22<p>You can email your theme to <code>steve0greatnessiscool+rati[at]gmail.com</code>.</p> 23<p>When emailing it, please include this information with your theme:</p> 24<ul> 25<li>Your theme's name</li> 26<li>A link to your profile</li> 27</ul> 28<p>Also make sure to include your themes CSS file with your email, otherwise it cannot be added.</p> 29<h2 id="submit-with-pr">Submit with Pull Request</h2> 30<p>You can also submit your theme in a PR to the repository this is hosted at: <a href="https://roundabout-host.com/steve0greatness/ThemeIndex">roundabout-host.com/steve0greatness/ThemeIndex</a> (or its mirror at <a href="https://codeberg.org/Steve0Greatness/ThemeIndex">codeberg.org/Steve0Greatness/ThemeIndex</a>).</p> 31<p>Simply place your theme CSS into a subdirectory under the theme direcotry(this should be your username), then include a bit of metadata in the themes.xml file in the project root.</p> 32<p>This meta data should be as follows:</p> 33<code class="preformatted-text"><<span class="lang-element">theme</span>> 34<<span class="lang-element">title</span>>{Theme Name}</<span class="lang-element">title</span>> 35<<span class="lang-element">author</span> 36<span class="lang-attribute">uri</span>=<span class="lang-string">"https://{profile link}"</span> 37<span class="lang-attribute">instance</span>=<span class="lang-string">"{profile instance}"</span> 38<span class="lang-attribute">username</span>=<span class="lang-string">"{author username}"</span> 39<span class="lang-attribute">xlink:type</span>=<span class="lang-string">"simple"</span> 40<span class="lang-attribute">xlink:href</span>=<span class="lang-string">"https://{profile link}"</span> 41<span class="lang-attribute">xlink:show</span>=<span class="lang-string">"replace"</span> 42>{Author display name}</<span class="lang-element">author</span>> 43<<span class="lang-element">uri</span> 44<span class="lang-attribute">xlink:type</span>=<span class="lang-string">"simple"</span> 45<span class="lang-attribute">xlink:href</span>=<span class="lang-string">"/themes/{pathto/theme.css}"</span> 46<span class="lang-attribute">xlink:show</span>=<span class="lang-string">"replace"</span> 47>{pathto/theme.css}</<span class="lang-element">uri</span>> 48</<span class="lang-element">theme</span>></code> 49</body> 50 51</html> 52