submit.html
HTML document, ASCII text
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.png" /> 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>Submit a Theme</h1> 21<h2 id="over-email">Over Email</h2> 22<p>Theme submissions can be sent through email.</p> 23<p>Simply attach the CSS file to the email, and include:</p> 24<ul> 25<li>Your theme's name</li> 26<li>A link to your profile</li> 27</ul> 28<h2 id="submit-with-pr">Submit with Pull Request</h2> 29<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>.</p> 30<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> 31<p>This meta data should be as follows:</p> 32<code><pre><theme> 33<title>{Theme Name}</title> 34<author 35uri="https://{profile link}" 36instance="{profile instance}" 37username="{author username}" 38>{Author display name}</author> 39<uri>{pathto/theme.css}</uri> 40</theme></pre></code> 41</body> 42 43</html> 44