Skip to content

πŸ“‚ [archive] MailTape - V1 built with Jekyll and edited with Prose πŸ‘‰ Check the V2

Notifications You must be signed in to change notification settings

MailTape/MailTape-v1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3fd409e Β· May 2, 2024
Mar 10, 2024
Mar 10, 2024
May 2, 2024
Mar 10, 2024
Mar 23, 2024
Jun 19, 2018
Aug 6, 2018
Oct 22, 2016
Aug 6, 2018
Oct 16, 2021
Nov 22, 2019
Feb 9, 2017
Oct 2, 2019
Mar 20, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Mar 11, 2014
Jan 4, 2019
Sep 9, 2020
May 7, 2021
Oct 16, 2019
Oct 16, 2019
Jun 28, 2017
Mar 10, 2014
Dec 15, 2021
May 27, 2023
Apr 6, 2020
Mar 4, 2024
Nov 22, 2019
Mar 20, 2014
Oct 9, 2021
Dec 27, 2014
Apr 2, 2017
Apr 30, 2016
Jun 3, 2016
Oct 28, 2023
Nov 19, 2019
Apr 30, 2023
Mar 20, 2014
Feb 3, 2019

Repository files navigation

Feed your inspiration, every Sunday morning.

Each MailTape issue is the result of a collaborative work between a featured guest who curates the three first tracks, a curator who completes the selection, an illustrator and a writer.

Dancers, musicians, illustrators, writers, researchers, artists and creators of all kinds are following MailTape.

We're a not-for-profit art collective.

Coded with love in Berlin, Toulouse and Paris.

ImaCrea.

You're a coder?

Feel free to make a pull request, we're very open to collaboration :)

Building MailTape locally

Using a local Jekyll install

Pre-requisites:

$ gem install bundler
$ bundle i
$ bundle exec jekyll serve

This serves MailTape on port 4000. Visit http://127.0.0.1:4000/ to check the changes you're making locally.

Using Docker

If you have Docker installed, you can run Jekyll without installing it with the following command:

docker run --rm \
    --volume="$PWD:/srv/jekyll" \
    --volume="$PWD/vendor/bundle:/usr/local/bundle" \
    --env JEKYLL_ENV=development \
    -p 4000:4000 jekyll/jekyll:3.8 \
    jekyll serve --incremental

Then visit http://127.0.0.1:4000/ as described previously.