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