intro and contact page
This commit is contained in:
parent
c7dbcff8bf
commit
66c72d142f
1 changed files with 62 additions and 10 deletions
|
@ -1,12 +1,12 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>{% load sass_tags static %}
|
||||||
<html lang="en">
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>{{ settings.title }}</title>
|
<title>{{ settings.title }}</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-touch-fullscreen" content="yes">
|
<meta name="apple-touch-fullscreen" content="yes">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||||||
<base target="_blank" >
|
<link href="{% sass_src 'css/style.scss' %}" rel="stylesheet" type="text/css">
|
||||||
<link rel="stylesheet" href="{% static 'timeline/css/timeline.css' %}">
|
<link rel="stylesheet" href="{% static 'timeline/css/timeline.css' %}">
|
||||||
<link rel="stylesheet" href="{% static 'timeline/css/fonts/font.default.css' %}">
|
<link rel="stylesheet" href="{% static 'timeline/css/fonts/font.default.css' %}">
|
||||||
<style>
|
<style>
|
||||||
|
@ -19,18 +19,70 @@
|
||||||
.tl-timeline {
|
.tl-timeline {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.tl-attribution {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
display: block
|
||||||
|
}
|
||||||
|
#intro, #contact {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="intro">
|
||||||
|
{{ intro.body | safe }}
|
||||||
|
</div>
|
||||||
<div id="timeline"></div>
|
<div id="timeline"></div>
|
||||||
|
<div id="contact">
|
||||||
|
<form method="post">
|
||||||
|
<input type="text" placeholder="Subject"/><br>
|
||||||
|
<textarea placeholder="Message"></textarea><br>
|
||||||
|
<input type="submit" value="Send message">
|
||||||
|
</form>
|
||||||
|
{{ contact.body | safe }}
|
||||||
|
</div>
|
||||||
<script src="{% static 'timeline/js/timeline.js' %}"></script>
|
<script src="{% static 'timeline/js/timeline.js' %}"></script>
|
||||||
<script>
|
<script>
|
||||||
var data = {{ timeline_json | safe }};
|
var data = {{ timeline_json | safe }};
|
||||||
var timeline = new TL.Timeline('timeline', data, {
|
var timeline
|
||||||
hash_bookmark: true,
|
|
||||||
debug: false,
|
function load_timeline() {
|
||||||
timenav_height: 100,
|
timeline = new TL.Timeline('timeline', data, {
|
||||||
});
|
hash_bookmark: true,
|
||||||
|
debug: false,
|
||||||
|
timenav_height: 100,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
document.querySelector('#intro').addEventListener('click', event => {
|
||||||
|
document.querySelector('#intro').style.display = 'none'
|
||||||
|
document.querySelector('#contact').style.display = 'none'
|
||||||
|
document.querySelector('#timeline').style.display = 'block'
|
||||||
|
load_timeline()
|
||||||
|
})
|
||||||
|
if (document.location.hash.slice(1).length) {
|
||||||
|
load_timeline()
|
||||||
|
}
|
||||||
|
function hashchange(event) {
|
||||||
|
console.log('hc', document.location.hash.slice(1).length, document.location.hash.slice(1))
|
||||||
|
if (document.location.hash.slice(1) == 'contact') {
|
||||||
|
document.querySelector('#intro').style.display = 'none'
|
||||||
|
document.querySelector('#contact').style.display = 'block'
|
||||||
|
document.querySelector('#timeline').style.display = 'none'
|
||||||
|
} else if (document.location.hash.slice(1).length) {
|
||||||
|
document.querySelector('#intro').style.display = 'none'
|
||||||
|
document.querySelector('#contact').style.display = 'none'
|
||||||
|
document.querySelector('#timeline').style.display = 'block'
|
||||||
|
} else {
|
||||||
|
document.querySelector('#intro').style.display = 'block'
|
||||||
|
document.querySelector('#contact').style.display = 'none'
|
||||||
|
document.querySelector('#timeline').style.display = 'none'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
window.addEventListener('hashchange', hashchange)
|
||||||
|
hashchange()
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue