diff --git a/src/components/AboutPage.vue b/src/components/AboutPage.vue index 510e3d7..74d3ede 100644 --- a/src/components/AboutPage.vue +++ b/src/components/AboutPage.vue @@ -83,10 +83,10 @@ a {

The first issue deals with eating in isolation - the struggles, the joys, the unexpected discoveries, the newly added anxieties. It came about as a desire to talk about our ever changing relationship to food, and how unexpected external factors (such as a global quarantine) can bring out new ways of relating to what we grow, buy, eat and share. The contributions were written and sent throughout April 2020.

-

The second issue is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward.

+

The second issue 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.

Magiun is the name of a Romanian jam made out of plums, with no extra sugar added. It has a very thick consistency and a dark violet color, sometimes even black. The most well-known variety, Magiun de Topoloveni, is the first Romanian certified natural product and protected by European Union. I grew up with a less well-known king of magiun, the one my grandparents used to prepare year after year in their yard, from plums I begrudgingly helped pick from our orchard. The making of magiun was a night-long affair, during which purple, fleshy plums melted away into a thick, sticky, dark brown paste.

-

This magazine has been dreamed of and developed by Alice Strete. For questions/offers of help/contributions, you can send an email.

+

This magazine has been dreamed of and developed by Alice Strete. The web and print design is masterfully done by Simon Browne. For questions/offers of help/contributions, you can send an email.

The website has been made using Bootstrap-Vue. All content (text, images, illustrations) is licensed under the Free Art License, unless specified otherwise.

The first issue of the project has been developed with the help of the CBK Rotterdam PPR fund.

diff --git a/src/components/Issues.vue b/src/components/Issues.vue new file mode 100644 index 0000000..6fa9312 --- /dev/null +++ b/src/components/Issues.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/components/MenuBar.vue b/src/components/MenuBar.vue index a5b27da..08e392e 100644 --- a/src/components/MenuBar.vue +++ b/src/components/MenuBar.vue @@ -6,7 +6,7 @@ Home About - Issues + Issues Order Contribute diff --git a/src/components/OpenCallPage.vue b/src/components/OpenCallPage.vue index e9d49be..1dd239e 100644 --- a/src/components/OpenCallPage.vue +++ b/src/components/OpenCallPage.vue @@ -73,26 +73,29 @@ a { -

Open Call Magiun #2, on adapting

+

Open Call Magiun #3, coming up soon!

- +

Watch this space!

+
+ + diff --git a/src/components/Order.vue b/src/components/Order.vue index 73716a3..4f11165 100644 --- a/src/components/Order.vue +++ b/src/components/Order.vue @@ -80,6 +80,7 @@ a {

To order, send an email!

+

Currently available in print:

Magiun #1

diff --git a/src/components/SecondEditionPage.vue b/src/components/SecondEditionPage.vue index e97eac2..769dcb4 100644 --- a/src/components/SecondEditionPage.vue +++ b/src/components/SecondEditionPage.vue @@ -271,7 +271,7 @@ a {
- +
diff --git a/src/components/soulsoup.vue b/src/components/soulsoup.vue index a3c845e..2c0b12b 100644 --- a/src/components/soulsoup.vue +++ b/src/components/soulsoup.vue @@ -228,7 +228,6 @@ crying, maybe quietly, but the company of cooking has offered me peace.

- diff --git a/src/components/whatwecan.vue b/src/components/whatwecan.vue index 7b4fef7..7c266b5 100644 --- a/src/components/whatwecan.vue +++ b/src/components/whatwecan.vue @@ -252,7 +252,6 @@ is already there.

- diff --git a/src/main.js b/src/main.js index cbdd942..8fb92ca 100644 --- a/src/main.js +++ b/src/main.js @@ -41,6 +41,7 @@ import whatwecan from './components/whatwecan' import lychee from './components/lychee' import anise from './components/anise' import Order from './components/Order' +import Issues from './components/Issues' Vue.config.productionTip = false @@ -78,7 +79,8 @@ const router = new VueRouter({ { path: '/whatwecan', component: whatwecan }, { path: '/lychee', component: lychee }, { path: '/anise', component: anise }, - { path: '/order', component: Order } + { path: '/order', component: Order }, + { path: '/issues', component: Issues } ]