tangled
alpha
login
or
join now
kokirigla.de
/
nara
0
fork
atom
online Minecraft written book viewer
0
fork
atom
overview
issues
pulls
pipelines
feat(ui): link to repo
kokirigla.de
4 weeks ago
f2e89532
9faa7843
verified
This commit was signed with the committer's
known signature
.
kokirigla.de
SSH Key Fingerprint:
SHA256:BlSEtD3ZoKT3iKveofI8gba+lZ9CEolKRM1Pzy3pAwg=
+4
-2
2 changed files
expand all
collapse all
unified
split
build.rs
templates
index.html
+1
-1
build.rs
···
2
2
3
3
fn main() {
4
4
let hash = Command::new("git")
5
5
-
.args(["rev-parse", "--short=6", "HEAD"])
5
5
+
.args(["rev-parse", "HEAD"])
6
6
.output()
7
7
.ok()
8
8
.and_then(|out| {
+3
-1
templates/index.html
···
162
162
</section>
163
163
164
164
<footer class="footer">
165
165
-
<p class="subtle">build {{ git_hash }}</p>
165
165
+
<p class="subtle">build <a
166
166
+
href="https://tangled.org/did:plc:uthy5qqccx3hdwxo7sriplmh/nara/commit/{{ git_hash }}">{{
167
167
+
&git_hash[0..6] }}</a></p>
166
168
</footer>
167
169
</main>
168
170
{% endblock %}