added more work
parent
274c19bebf
commit
58df6d34cc
@ -0,0 +1,118 @@
|
||||
<style scoped>
|
||||
|
||||
* {
|
||||
border: 0px black solid;
|
||||
}
|
||||
|
||||
.project_title {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
padding-bottom: 40px;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.description_text {
|
||||
font-size: 15px;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.tags {
|
||||
padding-top: 10px;
|
||||
font-size: 15px;
|
||||
font-style: italic;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: hotpink;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.image_right {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<b-container fluid>
|
||||
<MenuBar/>
|
||||
<b-row>
|
||||
<b-col md="12">
|
||||
<p class="project_title">Magiun #2</p>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
|
||||
|
||||
<b-row class='content'>
|
||||
<b-col md="4">
|
||||
<div class="description_text">
|
||||
<p class="tags">Publication</p>
|
||||
<p>
|
||||
Magiun is a magazine about everyday food. It publishes stories, poems, essays, recipes, photos and illustrations.</p>
|
||||
<p>
|
||||
The <a href="https://magiun.online/">second issue</a> is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward. The contributions were sent in early 2021. The illustration on the cover shows one way of adapting, regrowing and coping with anxiety, by planting the ends of spring onions in an old can of olives to have a steady supply of greens. It's based on true facts.</p>
|
||||
<p>The print publication was developed in collaboration with Simon Browne and printed by <a href="http://www.printroom.org/">Printroom Rotterdam</a>.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</b-col>
|
||||
<b-col md="8">
|
||||
<b-row class="image_right">
|
||||
<b-col md="8" offset-md="2">
|
||||
<b-img class="img-fluid" src="media/magiun2/window.png"></b-img>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
<b-row class="image_right">
|
||||
|
||||
<b-col md="8" offset-md="2">
|
||||
<b-img class="img-fluid" src="media/magiun2/stack.png"></b-img>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
<b-row class="image_right">
|
||||
<b-col md="8" offset-md="2">
|
||||
<b-img class="img-fluid" src="media/magiun2/centerfold.png"></b-img>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
</b-container>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MenuBar from './MenuBar'
|
||||
export default {
|
||||
name: 'Magiun2',
|
||||
data: function() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
MenuBar
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
@ -0,0 +1,99 @@
|
||||
<style scoped>
|
||||
|
||||
* {
|
||||
border: 0px black solid;
|
||||
}
|
||||
|
||||
.project_title {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
padding-bottom: 40px;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.description_text {
|
||||
font-size: 15px;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.tags {
|
||||
padding-top: 10px;
|
||||
font-size: 15px;
|
||||
font-style: italic;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: hotpink;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<b-container fluid>
|
||||
<MenuBar/>
|
||||
<b-row>
|
||||
<b-col md="12">
|
||||
<p class="project_title">Recipes on the Radio</p>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
|
||||
|
||||
<b-row class="content">
|
||||
<b-col md="4">
|
||||
<div class="description_text">
|
||||
<p class="tags">Radio show, website</p>
|
||||
<p>Recipes on the Radio is a radio show streamed on WORM Radio and recorded mostly in the WORM kitchen. It features discussions about food and it's implication in society and culture, bringing together the hosts, Alice Strete and Yoana Buzova, as well as several guests throughout the show.</p>
|
||||
<p>The recording of the show, as well as the recipes that we cooked in each episode can be found on the <a href="https://ontheradio.recipes/">website</a>.</p>
|
||||
|
||||
</div>
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/ROR.png"></b-img>
|
||||
<p></p>
|
||||
<b-img class="img-fluid" src="media/ror/santi.jpg"></b-img>
|
||||
|
||||
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/ror/radio.jpeg"></b-img>
|
||||
<p></p>
|
||||
<b-img class="img-fluid" src="media/ror/sandwiches.jpg"></b-img>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
</b-container>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MenuBar from './MenuBar'
|
||||
export default {
|
||||
name: 'RORPage',
|
||||
data: function() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
MenuBar
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
@ -0,0 +1,99 @@
|
||||
<style scoped>
|
||||
|
||||
* {
|
||||
border: 0px black solid;
|
||||
}
|
||||
|
||||
.project_title {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
padding-bottom: 40px;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.description_text {
|
||||
font-size: 15px;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.tags {
|
||||
padding-top: 10px;
|
||||
font-size: 15px;
|
||||
font-style: italic;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: hotpink;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<b-container fluid>
|
||||
<MenuBar/>
|
||||
<b-row>
|
||||
<b-col md="12">
|
||||
<p class="project_title">Releading Food</p>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
|
||||
|
||||
<b-row class="content">
|
||||
<b-col md="4">
|
||||
<div class="description_text">
|
||||
<p class="tags">Workshop</p>
|
||||
<p>Reading food is an exercise in tracing the routes that our food crosses in order to reach our plates, focusing on the materiality of this process that is most often concealed from us or difficult to untangle. </p>
|
||||
<p>The workshop was organized as a part of Hackers&Designers' Summer Academy in 2021, which took place simultaneously in Amsterdam, Harare, Pittsburgh and Vienna. Read more information on their <a href="https://hackersanddesigners.nl/s/Summer_Academy_2021/p/Reading_food_with_Relearn_and_Varia">website</a>. Photos by Zazie Stevens.</p>
|
||||
|
||||
</div>
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/readingfood.png"></b-img>
|
||||
|
||||
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/readingfood/reading_2.jpg"></b-img>
|
||||
<p></p>
|
||||
|
||||
<b-img class="img-fluid" src="media/readingfood/Relearn7.jpg"></b-img>
|
||||
<p></p>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
</b-container>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MenuBar from './MenuBar'
|
||||
export default {
|
||||
name: 'ReadingFoodPage',
|
||||
data: function() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
MenuBar
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
@ -0,0 +1,99 @@
|
||||
<style scoped>
|
||||
|
||||
* {
|
||||
border: 0px black solid;
|
||||
}
|
||||
|
||||
.project_title {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
padding-bottom: 40px;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.description_text {
|
||||
font-size: 15px;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.tags {
|
||||
padding-top: 10px;
|
||||
font-size: 15px;
|
||||
font-style: italic;
|
||||
font-family: "Roboto Mono", monospace;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: hotpink;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<b-container fluid>
|
||||
<MenuBar/>
|
||||
<b-row>
|
||||
<b-col md="12">
|
||||
<p class="project_title">Relearn 2021</p>
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
|
||||
|
||||
<b-row class="content">
|
||||
<b-col md="4">
|
||||
<div class="description_text">
|
||||
<p class="tags">Summer school, workshop</p>
|
||||
<p>Relearn is a summerschool which welcomes persons, artists, students, teachers from all backgrounds and disciplines. Participants gather to learn from and teach to each other, beyond the traditional paradigms of education. Relearn researches convivial, experimental and deviant methods and means in the fields of design, computing and education, challenging the normal roles and separations in them (teacher/student, developer/user, art/life…). In 2021, Relearn was organized together with Luke Murphy and Santiago Piñol at Varia, De Bollenpandje and Ook Huis.</p>
|
||||
<p>During the summer school, the activities were documented in real time using a self-hosted XMPP chat and a chatbot into an anarchive. The full documentation can be found on the <a href="http://relearn.be/2021/">website</a>.</p>
|
||||
|
||||
</div>
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/relearn.png"></b-img>
|
||||
<p></p>
|
||||
<b-img class="img-fluid" src="media/relearn/people.gif"></b-img>
|
||||
|
||||
|
||||
</b-col>
|
||||
|
||||
<b-col md="4">
|
||||
<b-img class="img-fluid" src="media/relearn/publication.jpg"></b-img>
|
||||
<p></p>
|
||||
<b-img class="img-fluid" src="media/relearn/outside.jpg"></b-img>
|
||||
|
||||
</b-col>
|
||||
</b-row>
|
||||
|
||||
</b-container>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MenuBar from './MenuBar'
|
||||
export default {
|
||||
name: 'RelearnPage',
|
||||
data: function() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
components: {
|
||||
MenuBar
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue