theme-list.xsl
XML 1.0 document, ASCII text
1<?xml version="1.0" encoding="utf-8"?> 2<xsl:stylesheet 3version="3.1" 4xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 5xmlns:t="https://steve0greatness.roundabout-host.com/ThemeIndex/themes.xsd" 6> 7 8<xsl:template match="/"> 9<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> 10<head> 11<title>Roundabout Theme Index</title> 12<link rel="stylesheet" href="required.css" /> 13<link rel="stylesheet" href="style.css" defer="defer" /> 14<link rel="stylesheet" href="breadcrumbs.css" defer="defer" /> 15<link rel="stylesheet" href="code.css" defer="defer" /> 16<link rel="stylesheet" href="fonts.css" defer="defer" /> 17<meta charset="UTF-8" /> 18<meta name="viewport" content="width=device-width, initial-scale=1.0" /> 19<meta http-equiv="X-UA-Compatible" content="ie=edge" /> 20<link rel="icon" href="favicon.ico" /> 21</head> 22<body> 23<hgroup role="group"> 24<h1>Roundabout Theme Index</h1> 25<p class="subtitle">The hub for Roundabout Themes</p> 26</hgroup> 27<details class="resources"> 28<summary>Help and Resources</summary> 29<ul> 30<li>Don't know how to install a theme? See <a href="install.html">install.html</a></li> 31<li>Want your own theme here? See <a href="submit.html">submit.html</a></li> 32<li>Source code available at <a rel="external" href="https://roundabout-host.com/steve0greatness/ThemeIndex">roundabout-host.com/steve0greatness/ThemeIndex</a></li> 33<li>Join our Matrix: <a rel="external" href="https://matrix.to/#/#roundaboutthemeindex:matrix.org">#roundaboutthemeindex:matrix.org</a></li> 34</ul> 35<strong>Theme Creation</strong> 36<p>This section is for resources about theme creation.</p> 37<ul> 38<li>Roundabout default theme: <a rel="external" href="https://roundabout-host.com/roundabout/roundabout/tree/master/static/efficient-ui/THEME.css">roundabout-host.com/roundabout/roundabout/tree/master/static/efficient-ui/THEME.css</a></li> 39<li>Roundabout stylesheet: <a rel="external" href="https://roundabout-host.com/roundabout/roundabout/tree/master/static/style.css">roundabout-host.com/roundabout/roundabout/tree/master/static/style.css</a></li> 40</ul> 41<strong>Quick notes</strong> 42<p>Some notices.</p> 43<ul> 44<li>The fonts Roboto and Roboto Mono are used on this website. They're licensed under the Apache License, a copy of which is found at <a rel="nofollow" href="/Roboto_LICENSE.txt">Roboto_LICENSE.txt</a>.</li> 45<li>This website as a whole is licensed under the GNU GPL v3.</li> 46</ul> 47</details> 48<hr /> 49<h2 id="theme-list">Theme List</h2> 50<ul id="ThemeList"> 51<xsl:for-each select="/t:themes/t:theme"> 52<li> 53<table> 54<tr> 55<th 56class="theme-name" colspan="2" 57> 58<xsl:value-of select="t:title"/> 59</th> 60</tr> 61<tr> 62<th> 63Author 64</th> 65<td> 66<a> 67<xsl:attribute name="href"> 68<xsl:value-of select="t:author/@uri"/> 69</xsl:attribute> 70<xsl:value-of select="t:author"/> 71</a> 72</td> 73</tr> 74<tr> 75<td colspan="2"> 76<a> 77<xsl:attribute name="href"> 78themes/<xsl:value-of select="t:uri"/> 79</xsl:attribute> 80Theme CSS 81</a> 82</td> 83</tr> 84</table> 85</li> 86</xsl:for-each> 87</ul> 88</body> 89</html> 90</xsl:template> 91 92</xsl:stylesheet> 93