master
Steve Ayerhart 2023-09-10 15:36:21 -04:00
parent da0c3df62b
commit 6ac9c14202
3 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?xml version='1.0' ?>
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
<t:bind-each t:name="schedule">
<section class="game">
<h1 class="day-header"><t:label t:name="header"/></h1>
<t:bind-each t:name="schedules">
<div class="team-times">
<div class="teams">
<span class="@away"><t:label t:name="away"/></span>
<span class="at">@</span>
<span class="@home"><t:label t:name="home"/></span>
</div>
<div class="time"><t:label t:name="start"/></div>
</div>
</t:bind-each>
</section>
</t:bind-each>
</t:chloe>

View File

@ -0,0 +1,35 @@
<?xml version='1.0' ?>
<!DOCTYPE html>
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@900"/>
<link rel="stylesheet" href="tbl.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com"/>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500" rel="stylesheet"/>
<t:style t:include="resource:work/triangle-beer-league/tbl.css"/>
<t:write-title/>
<t:write-style/>
</head>
<body>
<header>
<t:a id="header-logo" t:href="$tbl"></t:a>
<nav role="navigation">
<menu>
<li><t:a t:href="$tbl/schedule">schedule</t:a></li>
<li><a href="#">standings</a></li>
<li><a href="#">roster</a></li>
</menu>
</nav>
</header>
<main class="schedule">
<t:call-next-template/>
</main>
<footer>
</footer>
</body>
</html>
</t:chloe>

View File

@ -0,0 +1,4 @@
<?xml version='1.0' ?>
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
<div id="triangle"></div>
</t:chloe>