From 64ff10e60fe248977aaf422928b5f6e4698c7407 Mon Sep 17 00:00:00 2001 From: Benjamin Jones Date: Fri, 21 Feb 2020 12:44:13 +0100 Subject: [PATCH] big updates? --- _data/social-links.yml | 3 + _includes/common/footer.html | 6 +- _includes/common/head.html | 2 +- _includes/common/lang-selector.html | 5 + _includes/svg/social-icons/arena.html | 5 + _includes/svg/social-icons/email.html | 8 + _includes/svg/social-icons/twitter.html | 5 + _includes/text/intro-text.md | 43 +++ _includes/text/proposal-template.md | 72 +++++ _layouts/default.html | 1 + _layouts/main.html | 8 - _layouts/page-with-header.html | 22 +- _layouts/page.html | 1 - _sass/fontface.scss | 9 +- _sass/includes/footer.scss | 26 ++ _sass/includes/header.scss | 22 ++ _sass/layout.scss | 16 +- _sass/layouts/404.scss | 8 + _sass/layouts/default.scss | 98 +++++- _sass/layouts/page-with-header.scss | 22 ++ _sass/pages/home.scss | 0 _sass/reset.scss | 2 - _sass/typography.scss | 20 +- _sass/utils/typo-utils.scss | 14 + _sass/variables.scss | 7 +- assets/css/index.scss | 9 +- assets/fonts/OratorStd/Orator-Std-Slanted.ttf | Bin 0 -> 34012 bytes assets/img/bg/scroll.jpg | Bin 21574710 -> 0 bytes assets/js/index.js | 27 ++ fr/about.markdown | 19 ++ fr/index.markdown | 1 + index.html | 10 + index.markdown | 31 -- reclaim-futures/404.html | 97 ++++++ reclaim-futures/about/index.html | 137 +++++++++ reclaim-futures/assets/css/index.css | 170 +++++++++++ reclaim-futures/assets/css/index.css.map | 42 +++ .../favicons/android-chrome-192x192.png | Bin 0 -> 2592 bytes .../favicons/android-chrome-384x384.png | Bin 0 -> 7885 bytes .../assets/favicons/apple-touch-icon.png | Bin 0 -> 4737 bytes .../assets/favicons/browserconfig.xml | 9 + .../assets/favicons/favicon-16x16.png | Bin 0 -> 855 bytes .../assets/favicons/favicon-32x32.png | Bin 0 -> 1389 bytes reclaim-futures/assets/favicons/favicon.ico | Bin 0 -> 15086 bytes .../assets/favicons/mstile-150x150.png | Bin 0 -> 3972 bytes .../assets/favicons/safari-pinned-tab.svg | 39 +++ .../assets/favicons/site.webmanifest | 19 ++ .../fonts/OratorStd/Orator-Std-Slanted.ttf | Bin 0 -> 34012 bytes .../fonts/space-mono/SpaceMono-Bold.ttf | Bin 0 -> 86740 bytes .../fonts/space-mono/SpaceMono-BoldItalic.ttf | Bin 0 -> 95396 bytes .../fonts/space-mono/SpaceMono-Italic.ttf | Bin 0 -> 103628 bytes .../fonts/space-mono/SpaceMono-Regular.ttf | Bin 0 -> 90972 bytes reclaim-futures/assets/img/bg/es-c.jpg | Bin 0 -> 5344932 bytes reclaim-futures/assets/img/bg/es.png | Bin 0 -> 10701098 bytes reclaim-futures/assets/js/index.js | 27 ++ reclaim-futures/assets/main.css | 285 ++++++++++++++++++ reclaim-futures/assets/main.css.map | 20 ++ .../assets/minima-social-icons.svg | 33 ++ reclaim-futures/feed.xml | 1 + reclaim-futures/fr/about/index.html | 137 +++++++++ reclaim-futures/fr/index.html | 103 +++++++ reclaim-futures/index.html | 149 +++++++++ reclaim-futures/package.json | 11 + 63 files changed, 1727 insertions(+), 74 deletions(-) create mode 100644 _data/social-links.yml create mode 100644 _includes/common/lang-selector.html create mode 100644 _includes/svg/social-icons/arena.html create mode 100644 _includes/svg/social-icons/email.html create mode 100644 _includes/svg/social-icons/twitter.html create mode 100644 _includes/text/intro-text.md create mode 100644 _includes/text/proposal-template.md delete mode 100644 _layouts/main.html create mode 100644 _sass/includes/footer.scss create mode 100644 _sass/includes/header.scss create mode 100644 _sass/layouts/page-with-header.scss create mode 100644 _sass/pages/home.scss create mode 100644 _sass/utils/typo-utils.scss create mode 100644 assets/fonts/OratorStd/Orator-Std-Slanted.ttf delete mode 100644 assets/img/bg/scroll.jpg create mode 100644 assets/js/index.js create mode 100644 fr/about.markdown create mode 100644 index.html delete mode 100644 index.markdown create mode 100644 reclaim-futures/404.html create mode 100644 reclaim-futures/about/index.html create mode 100644 reclaim-futures/assets/css/index.css create mode 100644 reclaim-futures/assets/css/index.css.map create mode 100644 reclaim-futures/assets/favicons/android-chrome-192x192.png create mode 100644 reclaim-futures/assets/favicons/android-chrome-384x384.png create mode 100644 reclaim-futures/assets/favicons/apple-touch-icon.png create mode 100644 reclaim-futures/assets/favicons/browserconfig.xml create mode 100644 reclaim-futures/assets/favicons/favicon-16x16.png create mode 100644 reclaim-futures/assets/favicons/favicon-32x32.png create mode 100644 reclaim-futures/assets/favicons/favicon.ico create mode 100644 reclaim-futures/assets/favicons/mstile-150x150.png create mode 100644 reclaim-futures/assets/favicons/safari-pinned-tab.svg create mode 100644 reclaim-futures/assets/favicons/site.webmanifest create mode 100644 reclaim-futures/assets/fonts/OratorStd/Orator-Std-Slanted.ttf create mode 100755 reclaim-futures/assets/fonts/space-mono/SpaceMono-Bold.ttf create mode 100755 reclaim-futures/assets/fonts/space-mono/SpaceMono-BoldItalic.ttf create mode 100755 reclaim-futures/assets/fonts/space-mono/SpaceMono-Italic.ttf create mode 100755 reclaim-futures/assets/fonts/space-mono/SpaceMono-Regular.ttf create mode 100644 reclaim-futures/assets/img/bg/es-c.jpg create mode 100644 reclaim-futures/assets/img/bg/es.png create mode 100644 reclaim-futures/assets/js/index.js create mode 100644 reclaim-futures/assets/main.css create mode 100644 reclaim-futures/assets/main.css.map create mode 100644 reclaim-futures/assets/minima-social-icons.svg create mode 100644 reclaim-futures/feed.xml create mode 100644 reclaim-futures/fr/about/index.html create mode 100644 reclaim-futures/fr/index.html create mode 100644 reclaim-futures/index.html create mode 100644 reclaim-futures/package.json diff --git a/_data/social-links.yml b/_data/social-links.yml new file mode 100644 index 0000000..6ee81e8 --- /dev/null +++ b/_data/social-links.yml @@ -0,0 +1,3 @@ +arena: https://are.na/reclaimfutures +twitter: https://twitter.com/sunda__ +email: mailto:info@reclaimfutures.org \ No newline at end of file diff --git a/_includes/common/footer.html b/_includes/common/footer.html index ab7cf94..d07a52a 100644 --- a/_includes/common/footer.html +++ b/_includes/common/footer.html @@ -1,3 +1,7 @@ \ No newline at end of file diff --git a/_includes/common/head.html b/_includes/common/head.html index 56de6f9..853e9f0 100644 --- a/_includes/common/head.html +++ b/_includes/common/head.html @@ -72,6 +72,6 @@ - + \ No newline at end of file diff --git a/_includes/common/lang-selector.html b/_includes/common/lang-selector.html new file mode 100644 index 0000000..a937374 --- /dev/null +++ b/_includes/common/lang-selector.html @@ -0,0 +1,5 @@ +{% if page.lang == 'en' %} + {{ include.fr-text }} +{% else %} + {{ include.en-text }} +{% endif %} \ No newline at end of file diff --git a/_includes/svg/social-icons/arena.html b/_includes/svg/social-icons/arena.html new file mode 100644 index 0000000..94bf836 --- /dev/null +++ b/_includes/svg/social-icons/arena.html @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/_includes/svg/social-icons/email.html b/_includes/svg/social-icons/email.html new file mode 100644 index 0000000..1d28ebb --- /dev/null +++ b/_includes/svg/social-icons/email.html @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/_includes/svg/social-icons/twitter.html b/_includes/svg/social-icons/twitter.html new file mode 100644 index 0000000..26ba256 --- /dev/null +++ b/_includes/svg/social-icons/twitter.html @@ -0,0 +1,5 @@ + + + + + diff --git a/_includes/text/intro-text.md b/_includes/text/intro-text.md new file mode 100644 index 0000000..1219ba1 --- /dev/null +++ b/_includes/text/intro-text.md @@ -0,0 +1,43 @@ + +__ReclaimFutures is a technology and culture conference around the broad subjects of post-capitalist desire, utopian expoloration and the real sustainable computing.__ + +## — Why ? + +As networks of increasingly opaque algorithms drive hyper-consumption and bolster deeply questionable political agendas the once radical utopian vision of the future offered by the internet is rapidly fading into a nostalgic throwback, how can we reclaim the narratives for non-capitalistic aims? + +Perhaps through radical acts of creativity, resistance and collective action it may be possible to once again to imagine a plurality of futures other than those offered by tech’s big four. + +Indeed ReclaimFutures is a technology and culture conference based upon this vision. It does not seek to disrupt nor 'innovate'. ReclaimFutures is not about the latest technologies, design trends or most exciting new startup incubator. It's not even about so-called 'ethical tech'. + +## — What ? + +Instead, ReclaimFutures (RF) aims to inspect, interrogate and expose the neoliberal forces at play within communication technology and startup culture, whilst championing radical thinkers and creators. In short reclaim futures is a conference for all the creators and thinkers attempting to smash, replace, and escape capitalism though acts of resistance in all their forms. + +RF aims to foster an environment where creative and engaged artists, philosophers, technologists, activists, hackers, researchers and educators can collectively assemble to imagine new futures, beyond the walls of capitalistic limitation and stage the question of what we can do next, big or small to achieve political and/or social transformation in these troubled times in our species history. + +Over the course of 3 days in spring 2020 the inaugural edition of ReclaimFutures will be held at a to-be-confirmed location in the city of Lausanne, Switzerland. During these 3 days a series of workshops, talks, roundtables, performances and artworks will be presented. + + + +## — Call for participants + +RF is built upon an open, inclusive and respectful philosophy and is a conference trying to give a voice to those typically less heard within tech circles. As such, **RF is open** to all non-commercial individuals or small groups to participate by presenting talks, artworks, workshops and performances and strongly encourages submissions from anyone who considers themselves to belong to an underrepresented group[[1]](#ref-1). + +ReclaimFutures is run as a DIT (Do It Together), self-funded, not-for-profit project and rejects commercial financial influence and thus cannot pay expenses of participants nor large fees[[2]](#ref-2). + +All participants will be paid a stipend in accordance to the ticket sales of the event, food and drink during the event days as well as assistance in finding accommodation and other practical needs where possible. + +If you're looking for inspiration we've assembled a list of [hypothetical talk titles and subjects](https://www.are.na/share/YDqWVUY) which you can take as a starting point, fully adopt, use to get an impression, or of course completely disregarded. + +To submit a proposal please add an issue on our Gitlab repository using our proposal template. Please note that proposals which don't follow the template may not be considered. To do so: + +- Create a gitlab account if you don't already have one. +- Navigate to our ReclaimFutures repo and click Issues in the side bar +- Press submit. Congrats you're done! We'll be in touch sometime after the application deadline. + +If you wish for your proposal to remain private you may send it by email to info@reclaimfutures.com. + +**Application deadline**: April 20, 2020 + +[1] Including but not limited to POCs, LGBT+, people with disabilities, working class, persons with no fixed address and first-time speakers +[2] If you are concerned financial factors would limit your ability to partake in the conference, please get in touch and we will do all we can to help. \ No newline at end of file diff --git a/_includes/text/proposal-template.md b/_includes/text/proposal-template.md new file mode 100644 index 0000000..e9a3f7a --- /dev/null +++ b/_includes/text/proposal-template.md @@ -0,0 +1,72 @@ +# ReclaimFutures 2020 Proposal + +Replace sample info between [brackets] with your own! + +**Format***: [Talk / Workshop / Artwork / Performance / etc...] +**Full name***: [] +**Pronouns***: [ ] +**Location**: [] +**Email Address***: [] +**Social media links (please specify platform)**: [twitter: @janedoe] +**Repo**: [full url to your repository] +**Personal website(s)**: [] +**I Consent to being photographed***: [Yes / No] +**I Consent to being on the livestream (video and audio)***: [Yes / No] +**I Consent to being recorded (audio only)***: [Yes / No] + +## About You +### Bio + +[Please tell us about your work, your background, what communities do you identify yourself as being a part of and why is this important in the work you do, the projects you've contributed to and your interests. Feel free to include relevant links, open source projects, place of work, etc. **Maximum 200 words**] + +### Profile Picture + +[Link to bio picture, e.g. https://profile-picture.jpg you may use or an abstract obscurred photo if you feel more comfortable.] + +*Note: Format for bio picture should be PNG/JPG/GIF, 256x256px.* + +## Your Talk / workshop / Artwork / Performance +### Title + +[Use a preliminary title if still WIP] + + +### Description + +[For talks and workshops: Please descibe the talk including the context/background, overall message you wish to share, **Maximum 300 words**] +[For artworks and performances: Please descibe the piece including the context/background, visual or sonic style, overall message you wish to share etc. **Maximum 300 words**] + +**Length**: [eg. 20 minutes for my presentation with 10 minutes for Q+A] + +*Please adhere to these guidelines:* +Talks: 15 - 30 minutes with 10 minutes for questions. +Workshops: 1h - 4hrs. +Music, dance or art performance: up to 90 minutes. + + +### Workshop technical requirements and materials list (if applicable) + +**Equipment/technical requirements**: [Projector, WiFi, etc] + +**Maximum number of attendees**: [] + +**Full list of materials needed for attendees**: [Include whether you are able to supply these materials or the attendees should bring themselves eg. Paper pads: supplied, pens: supplied , laptop: attendee] + + +### Artwork installation requirements (if applicable) + +[dimensions, power requirements, projector/screens, network connectivity, additional materials] + + + +### Performance requirements (if applicable) + +[Tech/production rider for your performance.] + + +### Additional Info / Links / References + +[If you wish, link us to anything else relevant to your work, like slide decks, code samples, videos, PDF portfolios etc.] + + +/label ~"rf2020" \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 2c9527a..26b53b6 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,4 +5,5 @@ {{ content }} {% include common/footer.html %} + \ No newline at end of file diff --git a/_layouts/main.html b/_layouts/main.html deleted file mode 100644 index 3fb0f15..0000000 --- a/_layouts/main.html +++ /dev/null @@ -1,8 +0,0 @@ ---- -layout: default ---- - -
- {{ content }} - {% include common/footer.html %} -
\ No newline at end of file diff --git a/_layouts/page-with-header.html b/_layouts/page-with-header.html index 7d7290a..d268e09 100644 --- a/_layouts/page-with-header.html +++ b/_layouts/page-with-header.html @@ -1,8 +1,24 @@ --- layout: page --- +
-{% include svg/logo-multi.html %} - {{ content }} -
\ No newline at end of file +
+ {{ content }} +
+ + + + +