1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{{project}}}</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<style>
.container {
background-color: rgba(255, 255, 255, 0.25);
}
.li-0 {
display: inline-block;
vertical-align: top;
margin: 5px;
padding: 10px;
background-color: rgba(255, 255, 255, 0.75);
}
@font-face {
font-family: "Noto";
src: url({{a_font}});
}
.noto {
font-family: "Noto";
}
.relative {
position: relative;
}
.heading {
position: absolute;
overflow: hidden;
height: 100%;
opacity: 0.1;
z-index: -1;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<span class="navbar-text">
As at
<a href="{{repo_url}}/commit/{{commit}}"><code>{{commit}}</code></a>
</span>
<div class="mx-auto order-0">
<a class="navbar-brand" href="#"> {{{project}}} </a>
</div>
</div>
</nav>
<div class="relative">
<h1 class="display-3 heading noto">{{sample_text}}</h1>
<div class="container p-5">
<h3>Fonts (HEAD build)</h3>
{{#families}}
<h4>{{name}}</h4>
<div class="row align-items-start">{{{ fonttree}}}</div>
{{/families}}
<h3>Tests</h3>
<img src="{{{shields_url}}}%2FFontspectorQA.json" />
<img src="{{{shields_url}}}%2FFamilyChecks.json" />
<img src="{{{shields_url}}}%2FFontFileChecks.json" />
<img src="{{{shields_url}}}%2FGlyphsetChecks.json" />
<img src="{{{shields_url}}}%2FNametableChecks.json" />
<img src="{{{shields_url}}}%2FOpentypeSpecificationChecks.json" />
<img src="{{{shields_url}}}%2FOutlineChecks.json" />
<img src="{{{shields_url}}}%2FShapingChecks.json" />
<img src="{{{shields_url}}}%2FUniversalProfileChecks.json" />
{{#families}}
<h4>{{name}}</h4>
<ul>
{{#fontspector}}
<li>
<a href="{{path}}">Fontspector Report ({{name}})</a>
</li>
{{/fontspector}}
</ul>
<ul>
{{#diffenator}}
<li>
<a href="{{path}}">{{name}}</a>
</li>
{{/diffenator}}
</ul>
<h3>Proof sheets</h3>
<ul>
<li>
Glyphs:
{{#proofs.glyphs}}<a href="{{path}}">{{name}}</a> {{/proofs.glyphs}}
</li>
<li>
Text:
{{#proofs.text}}<a href="{{path}}">{{name}}</a> {{/proofs.text}}
</li>
<li>
Waterfall:
{{#proofs.waterfall}}<a href="{{path}}">{{name}}</a> {{/proofs.waterfall}}
</li>
<li>
Proofer:
{{#proofs.proofer}}<a href="{{path}}">{{name}}</a> {{/proofs.proofer}}
</li>
</ul>
{{/families}}
</div>
</div>
</body>
</html>
|