You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.7 KiB
74 lines
2.7 KiB
{% extends "base.html" %}
|
|
{% block title %}VVVW{% endblock %}
|
|
{% block body %}
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<div class="bg">
|
|
<div class="row">
|
|
<div class="col-md-7">
|
|
<div class="map_area">
|
|
<script src="../static/js/d3_map.js"></script>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-5">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<!-- <p>Merve's thesis</p> -->
|
|
<!-- <iframe src="../static/images/abstract.pdf" width="300px" height="500px"></iframe> -->
|
|
<div class="thesis">
|
|
{% include 'thesis.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<div class="media_area">
|
|
<!-- <p>Related media</p> -->
|
|
<div id="showdadaloglu"><div class='text_audio'>Audio for Dadaloglu</div><audio id="audiodadaloglu" controls>
|
|
<source src="../static/audio/HNI_Soundinstall_3tracks_together1.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio tag.
|
|
</audio></div>
|
|
<div id="showasikA"><div class='text_audio'>Bio Aşık Ali İzzet</div><iframe width="560" height="315" src="https://www.youtube.com/embed/AnsVY_gjJns" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
|
|
<!-- <img src="../static/images/test_small.jpeg" alt="poem"> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="play-stop">
|
|
<div id="tracktime">0:0 / 22:39</div>
|
|
<a id="mBtn" onclick="PSFunction()">(Play)</a>
|
|
<button class="audio-button" onclick="document.getElementById('audioBG').volume -= 0.1">-</button>
|
|
<button class="audio-button" onclick="document.getElementById('audioBG').volume += 0.1">+</button>
|
|
</div>
|
|
<div class="main_audio">
|
|
<audio id='audioBG' ontimeupdate="document.getElementById('tracktime').innerHTML = Math.floor(this.currentTime/60) + ':' + (Math.floor(this.currentTime) - Math.floor(this.currentTime/60)*60) + ' / ' + Math.floor(this.duration/60)+ ':' + (Math.floor(this.duration) - Math.floor(this.duration/60)*60);">
|
|
<source src="../static/audio/FreshMythsDifferentTimes_performance_podcast1.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio tag.
|
|
</audio>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- scripts for mouse events -->
|
|
<script>
|
|
var audio = document.getElementById("audioBG");
|
|
var btn = document.getElementById("mBtn");
|
|
|
|
function PSFunction() {
|
|
if (audio.paused) {
|
|
audio.play();
|
|
btn.innerHTML = "(Pause)";
|
|
} else {
|
|
audio.pause();
|
|
btn.innerHTML = "(Play)";
|
|
}
|
|
}
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|