added localhost to settings template
parent
43eb40b7ee
commit
4cc904534a
@ -1,19 +0,0 @@
|
||||
{% load static %}
|
||||
<!doctype html>
|
||||
<html lang=en>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no">
|
||||
<title>xpub call 2025</title>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<img src="{{creature.image.url}}">
|
||||
<p>{{creature.caption}}</p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,57 +0,0 @@
|
||||
{% load static %}
|
||||
{% block extrahead %}
|
||||
<link rel="stylesheet" href="{% static 'call/statement.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<img src="{{creature.image.url}}" class="creature" style="display: none">
|
||||
|
||||
<canvas class="creature"></canvas>
|
||||
<!-- <p>{{creature.caption}}</p> -->
|
||||
|
||||
|
||||
<!-- <div class="bubble mini top">awesome!</div>
|
||||
<div class="bubble right">I can get you a thumb by three o'clock</div>
|
||||
<div class="bubble medium bottom">I'm not into the whole China thing, man</div>
|
||||
<div class="bubble grow left">This is such a travesty</div>
|
||||
<div class="bubble shadow large bottom">Ik moet nu eerst even een gerestaureerde drol hebben!</div> -->
|
||||
|
||||
<div class="bubble shadow large top"><textarea placeholder="Your messsage" autofocus id="caption"></textarea></div>
|
||||
|
||||
|
||||
<p>The Master Experimental Publishing at the Piet Zwart Institute in Rotterdam (NL) is a two-year master focused on the acts of making things public and creating publics in the age of post-digital networks.</p>
|
||||
<div id="info">
|
||||
<p>Application deadlines:</p>
|
||||
<p>
|
||||
March 4, 2024 (non-EU + EU)<br>
|
||||
May 8, 2024 (EU)<br>
|
||||
</p>
|
||||
<p>Open days:</p>
|
||||
<p>
|
||||
<a href="mailto:pzi.coordinators@hr.nl?subject=XPUB Open Day (online)&body=Hello, I will join the online open day on the February 6th on 10:00 CET or 16:00 CET" target="_blank">February 6, 2024</a> (online)<br>
|
||||
<a href="https://www.pzwart.nl/blog/2023/10/10/open-day/" target="_blank">February 15, 2025</a> (IRL)<br>
|
||||
</p>
|
||||
<p>
|
||||
<br>
|
||||
<button id="apply">Apply</button>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p>CSS Speech bubbles from <a href="https://codepen.io/josfabre/pen/EBMWwW">Jos Faber</a>.</p>
|
||||
|
||||
|
||||
<script>
|
||||
// Get canvas context
|
||||
const ctx = document.querySelector("canvas.creature").getContext("2d");
|
||||
|
||||
// Load image
|
||||
const image = new Image();
|
||||
image.onload = () => {
|
||||
// Draw the image into the canvas
|
||||
ctx.drawImage(image, 0, 0, 64);
|
||||
};
|
||||
image.src = document.querySelector("img.creature").src;
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
Loading…
Reference in New Issue