Files
alfieking.dev/templates/pages/test.html
T
acetheking987 cb7ec029eb
Deploy website / deploy (push) Successful in 3m1s
update music api to listenbrainz
2026-06-15 21:56:41 +01:00

21 lines
603 B
HTML

{% extends "bases/base.html" %}
{% block content %}
<section>
<h1>Test</h1>
<img src="static/content/photos/fur_meets/26-07-2025_critters_mk/PXL_20250726_155226274.jpg" alt="toaster" id="img1">
<p id="makeAndModel"></p>
<script src="https://cdn.jsdelivr.net/npm/exif-js"></script>
<script>
window.onload=getExif;
function getExif() {
var img1 = document.getElementById("img1");
EXIF.getData(img1, function() {
var make = EXIF.pretty(this);
makeAndModel.innerHTML = `${make}`;
});
}
</script>
</section>
{% endblock %}