first commit, iswision19
This commit is contained in:
commit
3a7e803c42
76 changed files with 24220 additions and 0 deletions
6
pages/README.md
Normal file
6
pages/README.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# PAGES
|
||||
|
||||
This directory contains your Application Views and Routes.
|
||||
The framework reads all the `*.vue` files inside this directory and creates the router of your application.
|
||||
|
||||
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing).
|
76
pages/about.vue
Normal file
76
pages/about.vue
Normal file
|
@ -0,0 +1,76 @@
|
|||
<template>
|
||||
<div id="about">
|
||||
<h2>What is ISWI?</h2>
|
||||
<p>
|
||||
"<a href="http://www.iswi.org/" target="_blank">ISWI</a>" stands for
|
||||
"Initiative Solidarische Welt Ilmenau" (Initiative for a World of
|
||||
Solidarity Ilmenau). It is a student association to foster tolerance,
|
||||
understanding among nations and an international attitute. Their biggest
|
||||
project is the "International Student Week Ilmenau" (shortened also
|
||||
"ISWI"). Once again about 350 students from over 70 nations are visiting
|
||||
our small town in Thuringia to join the second largest international
|
||||
student conference throughout the world. The over-all topic is "Global
|
||||
Justice – A Fair(y) Tale?", which is also focus of the TV-coverage
|
||||
(ISWIsion). Find out more about ISWI and its parent organization on
|
||||
<a href="http://2019.iswi.org/" target="_blank">2019.iswi.org</a> .
|
||||
</p>
|
||||
<h2>What is the ISWIsion?</h2>
|
||||
<p>
|
||||
ISWIsion is responsible for the TV coverage of the International Student
|
||||
Week in Ilmenau (ISWI). The ISWISION Team, consisting of 30 members of the
|
||||
students television broadcasting in Ilmenau iSTUFF, is covering the
|
||||
world's second largest international student festival in a daily
|
||||
television show. Being interested in modern media and technology the
|
||||
students of ISWISION are providing live-shows full of exciting reports,
|
||||
interviews and creative contributions about the ISWI, its participants and
|
||||
Ilmenau. You can follow all shows live via public viewing in the lobby of
|
||||
the <nuxt-link to="/location">Ernst-Abbe-Zentrum</nuxt-link>. If you can
|
||||
not make it to the shows, you also have the opportunity to
|
||||
<nuxt-link to="/">watch </nuxt-link>via livestream, cable net in Ilmenau
|
||||
or DVB-T2.
|
||||
</p>
|
||||
<h2>When is the ISWISION?</h2>
|
||||
<p>
|
||||
The coverage of the ISWI is taking place from May 17th until May 26st 2019
|
||||
and presents a daily show at 6pm from the EAZ studio - live and in
|
||||
english!
|
||||
</p>
|
||||
<h2>Where is the ISWISION?</h2>
|
||||
<p>
|
||||
Especially for the occasion of the International Student Week and its
|
||||
coverage, the ISWISION-team has put up a television studio at the
|
||||
<nuxt-link to="/location">Ernst-Abbe-Zentrum (EAZ)</nuxt-link>. The
|
||||
Ernst-Abbe-Zentrum is located on the Ehrenberg Strasse 29 and very easy to
|
||||
find due to a huge magnifying glas in front of it. In the lobby is the
|
||||
public screening area. Find our studio in the first room on the left hand
|
||||
side next to the lobby in room 1337/38 and our stage direction in 1332.
|
||||
Easy to find so you cannot miss it!
|
||||
</p>
|
||||
<h2>What is iSTUFF and FeM e.V.?</h2>
|
||||
<p>
|
||||
iSTUFF stands for the student television broadcasting in Ilmenau and is
|
||||
one of the department of FeM e.V. . iSTUFF is a project where students
|
||||
have the possibility to get to know and practice all processes associated
|
||||
with Television. Find out more about the TV channel and its projects on
|
||||
<a href="https://www.istuff.de">www.istuff.de</a> FeM e. V. is a research
|
||||
community of electronic media at the Ilmenau University of Technology. It
|
||||
is the largest student society in Ilmenau with about 1800 members.
|
||||
Students can join different departments and projects to get to know and
|
||||
research in the areas of new media technology. You can find out more about
|
||||
FeM at
|
||||
<a href="https://www.fem.tu-ilmenau.de">www.fem.tu-ilmenau.de</a>
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'About'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
#about {
|
||||
text-align: left;
|
||||
}
|
||||
</style>
|
21
pages/cultural-events.vue
Normal file
21
pages/cultural-events.vue
Normal file
|
@ -0,0 +1,21 @@
|
|||
<template>
|
||||
<div>
|
||||
<h2>ISWIsion | Cultural Events</h2>
|
||||
<div class="streamWrapper">
|
||||
<iframe
|
||||
src="https://cdn.fem-net.de/i/WemIjOfbvt8-ECD7i7Qt0"
|
||||
frameborder="0"
|
||||
scrolling="no"
|
||||
allowfullscreen="true"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'CulturalEvents'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
21
pages/index.vue
Normal file
21
pages/index.vue
Normal file
|
@ -0,0 +1,21 @@
|
|||
<template>
|
||||
<div>
|
||||
<h2>ISWIsion | the daily Liveshow</h2>
|
||||
<div class="streamWrapper">
|
||||
<iframe
|
||||
src="https://cdn.fem-net.de/i/Y6tM58-zZ5PyRvpeHuPb0"
|
||||
frameborder="0"
|
||||
scrolling="no"
|
||||
allowfullscreen="true"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
components: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
24
pages/location.vue
Normal file
24
pages/location.vue
Normal file
|
@ -0,0 +1,24 @@
|
|||
<template>
|
||||
<div id="map-wrap">
|
||||
<l-map :zoom="17" :center="[50.683666, 10.930899]">
|
||||
<l-tile-layer
|
||||
url="https://{s}.tile.osm.org/{z}/{x}/{y}.png"
|
||||
></l-tile-layer>
|
||||
<l-marker :lat-lng="[50.683666, 10.930899]"></l-marker>
|
||||
</l-map>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Location'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
#map-wrap {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 60vh;
|
||||
}
|
||||
</style>
|
21
pages/trailer.vue
Normal file
21
pages/trailer.vue
Normal file
|
@ -0,0 +1,21 @@
|
|||
<template>
|
||||
<div>
|
||||
<h2>Trailer</h2>
|
||||
<div class="streamWrapper">
|
||||
<iframe
|
||||
src="https://cdn.fem-net.de/i/g08eOgaltPONQ83O7EZ80"
|
||||
frameborder="0"
|
||||
scrolling="no"
|
||||
allowfullscreen="true"
|
||||
></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Trailer'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
Loading…
Add table
Add a link
Reference in a new issue