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</head> 8 9<body> 10<a href="index.html">go back</a> 11<h1>Submit a Theme</h1> 12<p>Theme submissions can be sent through email.</p> 13<p>Simply attach the CSS file to the email, and include:</p> 14<ul> 15<li>Your theme's name</li> 16<li>A link to your profile</li> 17</ul> 18<h2>Submit with PR</h2> 19<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> 20<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> 21<p>This meta data should be as follows:</p> 22<pre> 23<theme> 24<title>{Theme Name}</title> 25<author 26uri="https://{profile link}" 27instance="{profile instance}" 28username="{author username}" 29>{Author display name}</author> 30<uri>{pathto/theme.css}</uri> 31</theme> 32</pre> 33</body> 34 35</html> 36