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