gostart/templates/main.html
2022-11-29 20:47:23 -07:00

74 lines
1.8 KiB
HTML

<html lang="en">
<head>
<!-- <link rel="stylesheet" href="assets/bolt.css">-->
<link rel="stylesheet" href="assets/pico.css">
<style>
.icons li {
float: left;
padding: 10px;
margin: 10px;
width: 130px;
height: 130px;
border-radius: 10px;
border: 1px solid black;
list-style-type: none;
text-align: center;
}
.icons li img {
width: 50px;
hight: 50px;
}
dialog {
display: none;
}
</style>
<title>{{.Title}}::{{.Node.ComputedName}}</title>
</head>
<body>
<header>
<h1>{{.Title}} for {{.Node.ComputedName}}</h1>
<input type="search" id="search" name="search" placeholder="Search">
<ul class="icons">
{{range .Links}}
<li>{{.Name}}</li>
{{end}}
</ul>
</header>
<main>
<h3>Pull Requests</h3>
<ul>
{{range .PullRequests}}
<li>{{.Repo}} {{.Number}} ( {{.ID}} )</li>
{{end}}
</ul>
<h3>Watch Items</h3>
<ul class="">
{{range .Watches}}
<li><b>{{.Repo}} :: {{.Name}}</b>
<ul>
{{range .Data.Search.Edges}}
<li>{{.Node.Title}}</li>
{{end}}
</ul>
</li>
{{end}}
</ul>
<dialog open>
<article>
<h3>Add Watch Item</h3>
<p>
<input type="text"/>
</p>
<footer>
<a href="#cancel" role="button" class="secondary">Cancel</a>
<a href="#confirm" role="button">Add</a>
</footer>
</article>
</dialog>
</main>
<footer>Remaining queries: {{.CurrentLimits.Remaining}}</footer>
</body>
</html>