theme-list.xsl
XML 1.0 document, ASCII text
1<?xml version="1.0" encoding="utf-8"?> 2<xsl:stylesheet 3version="3.0" 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="willow.css" defer="defer" /> 17<link rel="stylesheet" href="gully.css" defer="defer" /> 18<link rel="stylesheet" href="redhatmono.css" defer="defer" /> 19<meta charset="UTF-8" /> 20<meta name="viewport" content="width=device-width, initial-scale=1.0" /> 21<meta http-equiv="X-UA-Compatible" content="ie=edge" /> 22<link rel="icon" href="favicon.ico" /> 23</head> 24<body> 25<hgroup role="group"> 26<h1>Roundabout Theme Index</h1> 27<p class="subtitle">The hub for Roundabout Themes</p> 28</hgroup> 29<details class="resources"> 30<summary>Help and Resources</summary> 31<ul> 32<li>Don't know how to install a theme? See <a href="install.html">install.html</a></li> 33<li>Want your own theme here? See <a href="submit.html">submit.html</a></li> 34<li>Source code available at <a href="https://roundabout-host.com/steve0greatness/ThemeIndex">roundabout-host.com/steve0greatness/ThemeIndex</a></li> 35<li>Join our Matrix: <a href="https://matrix.to/#/#roundaboutthemeindex:matrix.org">#roundaboutthemeindex:matrix.org</a></li> 36</ul> 37<strong>Theme Creation</strong> 38<p>This section is for resources about theme creation.</p> 39<ul> 40<li>Roundabout default theme: <a 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> 41<li>Roundabout stylesheet: <a href="https://roundabout-host.com/roundabout/roundabout/tree/master/static/style.css">roundabout-host.com/roundabout/roundabout/tree/master/static/style.css</a></li> 42</ul> 43</details> 44<hr /> 45<h2 id="theme-list">Theme List</h2> 46<ul id="ThemeList"> 47<xsl:for-each select="/t:themes/t:theme"> 48<li> 49<table> 50<tr> 51<th 52class="theme-name" colspan="2" 53> 54<xsl:value-of select="t:title"/> 55</th> 56</tr> 57<tr> 58<th> 59Author 60</th> 61<td> 62<a> 63<xsl:attribute name="href"> 64<xsl:value-of select="t:author/@uri"/> 65</xsl:attribute> 66<xsl:value-of select="t:author"/> 67</a> 68</td> 69</tr> 70<tr> 71<td colspan="2"> 72<a> 73<xsl:attribute name="href"> 74themes/<xsl:value-of select="t:uri"/> 75</xsl:attribute> 76Theme CSS 77</a> 78</td> 79</tr> 80</table> 81</li> 82</xsl:for-each> 83</ul> 84</body> 85</html> 86</xsl:template> 87 88</xsl:stylesheet> 89