By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 submit.html

View raw Download
text/html • 1.59 kiB
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
<nav aria-label="breadcrumbs">
14
<ol>
15
<li><a href="index.html">index</a></li>
16
<li><a href="submit.html" aria-current="location">Submit a Theme</a></li>
17
</ol>
18
</nav>
19
<h1>Submit a Theme</h1>
20
<h2 id="over-email">Over Email</h2>
21
<p>Theme submissions can be sent through email.</p>
22
<p>Simply attach the CSS file to the email, and include:</p>
23
<ul>
24
<li>Your theme's name</li>
25
<li>A link to your profile</li>
26
</ul>
27
<h2 id="submit-with-pr">Submit with Pull Request</h2>
28
<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>
29
<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>
30
<p>This meta data should be as follows:</p>
31
<code><pre>&lt;theme&gt;
32
&lt;title&gt;{Theme Name}&lt;/title&gt;
33
&lt;author
34
uri="https://{profile link}"
35
instance="{profile instance}"
36
username="{author username}"
37
&gt;{Author display name}&lt;/author&gt;
38
&lt;uri&gt;{pathto/theme.css}&lt;/uri&gt;
39
&lt;/theme&gt;</pre></code>
40
</body>
41
42
</html>
43