parent
abd9218561
commit
9420df0a4c
11 changed files with 29 additions and 28 deletions
|
@ -2,7 +2,21 @@
|
|||
<html>
|
||||
<head>
|
||||
{{template "head.tmpl" .}}
|
||||
<script src="copy.js"></script>
|
||||
<script>
|
||||
function copyElem(id, r='') {
|
||||
navigator.clipboard.writeText(
|
||||
document.getElementById(id).innerText.replaceAll(r, ''),
|
||||
);
|
||||
}
|
||||
|
||||
function copyFile(id) {
|
||||
fetch(document.getElementById(id).childNodes[1].href).then(f => {
|
||||
f.text().then(t => {
|
||||
navigator.clipboard.writeText(t);
|
||||
})
|
||||
})
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
{{template "header.tmpl" .}}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div id="nav">
|
||||
<img src="static/2404.webp" alt="Ange DUHAYON" width="128"><br>
|
||||
{{template "phone"}}<br>
|
||||
<a href="//yw5n.com">yw5n.com<br>
|
||||
<a href="https://yw5n.com">yw5n.com<br>
|
||||
{{template "email"}}<br>
|
||||
{{template "in"}}<br>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue