diff --git a/.firebaserc b/.firebaserc index f57b7142..2f7c2647 100644 --- a/.firebaserc +++ b/.firebaserc @@ -1,6 +1,5 @@ { "projects": { - "default": "sandbox-devfesttoulouse", - "prod": "devfesttoulouse-1f1dc" + "default": "devfest2019-5d7fb" } } diff --git a/.gitignore b/.gitignore index 0de79283..8a69c79d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /resources/ -public/ node_modules/ +public/ .firebase/ .idea/ -.firebase/ \ No newline at end of file +.firebase/ +.history diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7810fb74..57297b65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,25 +11,12 @@ before_script: - yarn - popd -sandbox: - script: - - hugo -F - - node themes/devfest-theme-hugo/minify.js - - firebase use default - - firebase deploy --token "$FIREBASE_SANDBOX_TOKEN" - artifacts: - paths: - - public - only: - - develop - prod: variables: HUGO_ENV: production script: - - hugo --baseURL https://2019.devfesttoulouse.fr/ + - hugo --baseURL https://devfest.gdgvl.ru/ - node themes/devfest-theme-hugo/minify.js - - firebase use prod - firebase deploy --token "$FIREBASE_PROD_TOKEN" artifacts: paths: diff --git a/.gitmodules b/.gitmodules index a559048c..ba946d5b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "themes/devfest-theme-hugo"] path = themes/devfest-theme-hugo - url = https://github.com/GDGToulouse/devfest-theme-hugo.git + url = https://github.com/C-Pro/devfest-theme-hugo.git diff --git a/README.md b/README.md index acac93ab..5ca12596 100644 --- a/README.md +++ b/README.md @@ -63,13 +63,13 @@ Or just copy an already existing blog entry, and update the content. ### Update the theme If you need to touch file of the theme (i.e. into `./themes/devfest-theme-hugo/`) you to know one more thing: - + The theme is in another Git repository , it's using [git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules), so you need to handle this two repository. - + So this is an example of workflow: - + * install last NodeJS and yarn, see [here](https://github.com/creationix/nvm) and [yarn](https://yarnpkg.com/) * go into the theme folder `./themes/devfest-theme-hugo/` * install dependencies with `yarn` @@ -79,14 +79,14 @@ So this is an example of workflow: * then build an optimized version with `npm run build` * then create the PR (or push) * into the site folder, `git add themes/devfest-theme-hugo` -* then create the PR (or push) +* then create the PR (or push) ### Publish To publish the site on firebase, just run `firebase deploy`. Note that you need to authenticate once with `firebase login` YOU DON'T NEED to publish manually the website, it's already done by pushing on `develop` or `master` branches. - + You could take a look at the `.gitlab-ci.yml` file diff --git a/cloudbuild.yaml b/cloudbuild.yaml new file mode 100644 index 00000000..db97f2b2 --- /dev/null +++ b/cloudbuild.yaml @@ -0,0 +1,8 @@ +steps: + - name: 'gcr.io/cloud-builders/git' + args: ['submodule', 'update', '--init', '--recursive'] + - name: 'gcr.io/${PROJECT_ID}/hugo' + args: ['--minify'] + - name: 'gcr.io/${PROJECT_ID}/firebase' + args: ['deploy', '--project', '${PROJECT_ID}', '--token', '${_TOKEN}'] + diff --git a/config.toml b/config.toml index c6922c19..f3bd1501 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,6 @@ -baseURL = "https://sandbox-devfesttoulouse.firebaseapp.com/" -languageCode = "en" -title = "Devfest Toulouse 2019" +baseURL = "https://devfest.gdgvl.ru/" +languageCode = "ru" +title = "Devfest Vladivostok 2019" # Theme theme = "devfest-theme-hugo" @@ -11,18 +11,18 @@ enableEmoji = true enableRobotsTXT = true enableMissingTranslationPlaceholders = true -googleAnalytics = "UA-37717223-8" +googleAnalytics = "UA-43847636-2" [params] - title = "DevFest Toulouse 2019" - date = "2019-10-03" - description = "The DevFest, or 'Developers Festival', is a technical conference for developers. It is aimed at students, professionals or simply curious technophiles." + title = "DevFest Vladivostok 2019" + date = "2019-09-28" + description = "The DevFest, or 'Developers Festival', is a technical conference for developers. It is aimed at professionals, students or simply curious technophiles." images = ["/images/social-share.jpg"] - email = "contact@devfesttoulouse.fr" + email = "sergey@melekhin.me" keywords = "event, gdg, gde, devfest, google, programming, android, chrome, developers, web, cloud, androiddev" - copyright = "We :heart:️ chocolatines" - cfpUrl = "https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi" - subscriptionUrl = "http://eepurl.com/dps1j5" + copyright = ":heart:️" + cfpUrl = "https://forms.gle/N8dsZPD3pcYMkFvm6" + subscriptionUrl = "https://meetup.com/GDG-Vladivostok/" appleTouchIcon = "/apple-touch-icon.png" favicon32 = "/favicon-32x32.png" favicon16 = "/favicon-16x16.png" @@ -39,21 +39,23 @@ googleAnalytics = "UA-37717223-8" #[[menu.main]] # identifier = "jobs" # name = "Jobs" -# url = "https://jobs.devfesttoulouse.fr/" +# url = "https://jobs.devfesttoulouse.ru/" # weight = 200 # external = true [languages] +[languages.ru] + weight = 0 + languageName = "ru" + [languages.en] weight = 1 - languageName = "gb" + languageName = "en" + -[languages.fr] - weight = 2 - languageName = "fr" -[languages.fr.params] - description = "Le DevFest, ou 'Developers Festival', est une conférence technique destinée aux développeurs. Elle s'adresse aussi bien aux étudiants, aux professionnels ou tout simplement aux curieux technophiles." +[languages.ru.params] + description = "DevFest - это ежегодная техническая конференция разработчиков. Она будет интересна профессионалам, студентам и просто интересующимся технологиями." [taxonomies] tag = "tags" @@ -64,17 +66,17 @@ googleAnalytics = "UA-37717223-8" [privacy.googleAnalytics] anonymizeIP = false disable = false - respectDoNotTrack = false + respectDoNotTrack = true useSessionStorage = false [privacy.instagram] - disable = true + disable = false simple = false [privacy.twitter] disable = false enableDNT = false simple = false [privacy.vimeo] - disable = true + disable = false simple = false [privacy.youtube] disable = false diff --git a/content/_index.fr.md b/content/_index.fr.md deleted file mode 100644 index c8da37aa..00000000 --- a/content/_index.fr.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -title: Accueil - -menu: - main: - weight: -1 - ---- - -{{% jumbo img="/images/backgrounds/back-0.jpg" imgLabel="DevFest Toulouse 2019" %}} - -## 3 Octobre, 2019 -### Centre de Congrès Pierre Baudis - -Devenez Partenaire 🇫🇷 - - - -{{% /jumbo %}} - - - -{{% home-info what="Participants:900,Journée:1,Conférences:36,Tracks en parallèle:4" class="primary" %}} -## Le DevFest Toulouse, c'est quoi ? - -Le DevFest, ou 'Developers Festival', est une conférence technique destinée aux développeurs. Elle s'adresse aussi bien aux étudiants qu'aux professionnels ou tout simplement aux curieux technophiles. -{{% /home-info %}} - -{{< youtube-section link="ZQGRMJzi6yU" title="Les meilleurs moments 2018" class="" >}} - - - -{{% home-speakers %}} -## Conférenciers en vedette - - - - - -{{% /home-speakers %}} - - - -{{% home-subscribe class="primary" %}} - -## Soyez notifié des dernières informations ! - -{{% /home-subscribe %}} - - - -{{% home-tickets %}} -# Billets Billeterie - - - - -\* Votre billet vous donne accès à toutes les conférences, aux pauses café et au repas. L'hébergement n'est **pas** inclus dans ce prix. - -{{% /home-tickets %}} - - - -{{% home-location - image="/images/map.jpg" - address="11 Espl. Compans-Caffarelli, 31000 Toulouse" - latitude="43.6110956" - longitude="1.4332799" %}} - -## Le lieu - -### Centre de Congrès Pierre Baudis - -Le Centre de Congrès Pierre Baudis est un lieu d'échanges moderne, -situé sur un emplacement privilégié, -à proximité immédiate du centre de Toulouse et dans un environnement verdoyant. - -{{% /home-location %}} - - - -{{% album images="/images/album/2018/_25A9313.jpg,/images/album/2018/_25A9386.jpg,/images/album/2018/_25A9671.jpg,/images/album/2018/_25A9334.jpg,/images/album/2018/_25A9282.jpg,/images/album/2018/_25A9612.jpg,/images/album/2018/_25A9452.jpg,/images/album/2018/_25A9628.jpg" %}} - -### Quelques photos du **DevFest Toulouse 2018** avec le thème 👾 _retro-gaming_. - - - Voir toutes les photos - {{% icon "right" %}} - - -{{% /album %}} - - - - - -{{% partners categories="platinium,gold,startup,soutien,media,communautes" %}} -## Partenaires Devenez Partenaire 🇫🇷 - -{{% /partners %}} diff --git a/content/_index.md b/content/_index.md index 6a0dc121..13bfadc6 100644 --- a/content/_index.md +++ b/content/_index.md @@ -8,32 +8,32 @@ menu: --- -{{% jumbo img="/images/backgrounds/back-0.jpg" imgLabel="DevFest Toulouse 2019" %}} +{{% jumbo img="/images/backgrounds/back-0.jpg" imgLabel="DevFest Vladivostok 2019" %}} -## October 3rd, 2019 -### Pierre Baudis congress center +## 28 September 2019 +### Venue TBD Become a sponsor - + {{% /jumbo %}} -{{% home-info what="Participants:900,Day:1,Sessions:36,Parallel Tracks:4" class="primary" %}} -## What is DevFest Toulouse? +{{% home-info what="Participants:200+,Day:1,Sessions:10+,Parallel Tracks:2" class="primary" %}} -The DevFest, or 'Developers Festival', is a technical conference for developers. +## What is DevFest Vladivostok? + +The DevFest, or 'Developers Festival', is a technical conference for developers. It is aimed at students, professionals or simply curious technophiles. {{% /home-info %}} -{{< youtube-section link="ZQGRMJzi6yU" title="Watch 2018 best moments" class="" >}} +{{< youtube-section link="kcepvhosV4U" title="Watch previous years DevFest video" class="" >}} @@ -46,7 +46,7 @@ It is aimed at students, professionals or simply curious technophiles. {{< button-link label="Submit a presentation" url="https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi" icon="cfp" >}} ---> +--> + + {{% home-tickets %}} -# Tickets Ticketing +# Tickets Ticketing \* Your ticket gives you access to all conferences, coffee breaks, and lunch. Accommodation is NOT included in this price. @@ -101,7 +101,7 @@ It is aimed at students, professionals or simply curious technophiles. {{% /home-tickets %}} - +--> {{% home-location image="/images/map.jpg" @@ -111,7 +111,7 @@ It is aimed at students, professionals or simply curious technophiles. ## The venue -### Centre de Congrès Pierre Baudis +### TBD The Centre de Congrès Pierre Baudis is a modern place of exchange, located on a privileged location, @@ -121,18 +121,18 @@ in the immediate vicinity of the centre of Toulouse and in a green environment. -{{% album images="/images/album/2018/_25A9313.jpg,/images/album/2018/_25A9386.jpg,/images/album/2018/_25A9671.jpg,/images/album/2018/_25A9334.jpg,/images/album/2018/_25A9282.jpg,/images/album/2018/_25A9612.jpg,/images/album/2018/_25A9452.jpg,/images/album/2018/_25A9628.jpg" %}} +{{% album images="/images/album/2018/1.jpg,/images/album/2018/2.jpg,/images/album/2018/3.jpg,/images/album/2018/4.jpg,/images/album/2018/5.jpg,/images/album/2018/6.jpg,/images/album/2018/7.jpg,/images/album/2018/8.jpg" %}} -### Some pictures of the **DevFest Toulouse 2018** with the 👾 _retro-gaming_ theme. +### Some pictures of the **DevFest Vladivostok 2018** - + See all photos {{% icon "right" %}} {{% /album %}} - + {{% partners categories="platinium,gold,startup,soutien,media,communautes" %}} ## Partners Become a sponsor diff --git a/content/_index.ru.md b/content/_index.ru.md new file mode 100644 index 00000000..c3bd7139 --- /dev/null +++ b/content/_index.ru.md @@ -0,0 +1,139 @@ +--- +title: Home + +menu: + main: + weight: -1 + +--- + + +{{% jumbo img="/images/backgrounds/back-0.jpg" imgLabel="DevFest Vladivostok 2019" %}} + +## 28 Сентября 2019 +### Место проведения определяется + +Стать спонсором + + + Предложить доклад + + + +{{% /jumbo %}} + + + +{{% home-info what="Участников:200+,Дней:1,Сессий:10+,Потоков:2" class="primary" %}} + +## Что такое DevFest Vladivostok? + +DevFest - это ежегодная техническая конференция разработчиков. Она будет интересна профессионалам, студентам и просто интересующимся технологиями. +{{% /home-info %}} + + +{{< youtube-section link="kcepvhosV4U" title="Видео нарезка с DevFest разных годов" class="" >}} + + + + + +{{% home-speakers %}} +## Докладчики + + + + + +{{% /home-speakers %}} + + + + +{{% home-location + image="/images/map.jpg" + address="11 Espl. Compans Caffarelli, 31000 Toulouse" + latitude="43.6110956" + longitude="1.4332799" %}} + +## Место + +### TBD + +The Centre de Congrès Pierre Baudis is a modern place of exchange, +located on a privileged location, +in the immediate vicinity of the centre of Toulouse and in a green environment. + +{{% /home-location %}} + + + +{{% album images="/images/album/2018/1.jpg,/images/album/2018/2.jpg,/images/album/2018/3.jpg,/images/album/2018/4.jpg,/images/album/2018/5.jpg,/images/album/2018/6.jpg,/images/album/2018/7.jpg,/images/album/2018/8.jpg" %}} + +### Фото альбом **DevFest Владивосток 2018** + + + See all photos + {{% icon "right" %}} + + +{{% /album %}} + + + +{{% partners categories="platinium,gold,startup,soutien,media,communautes" %}} +## Partners Become a sponsor + +{{% /partners %}} diff --git a/content/blog/_index.fr.md b/content/blog/_index.ru.md similarity index 100% rename from content/blog/_index.fr.md rename to content/blog/_index.ru.md diff --git a/content/blog/cfp.md b/content/blog/cfp.md index 7132f758..fe559b07 100644 --- a/content/blog/cfp.md +++ b/content/blog/cfp.md @@ -8,16 +8,16 @@ draft: false DevFest Toulouse will take place on October 3rd, 2019 at Pierre Baudis congress center. Our fourth edition will gather 900 attendees! -While waiting for the D-day do not hesitate to propose a talk at [DevFest Toulouse CFP](https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi). It is now open and this year it will be for 2 months only (from March the 25th to Mai the 25th.) +While waiting for the D-day do not hesitate to propose a talk at [DevFest Toulouse CFP](https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi). It is now open and this year it will be for 2 months only (from March the 25th to Mai the 25th.) -Be aware that at mid terms, we will select our “early speakers”, so do not wait till the end! -The final selection will happen within 4 weeks after the end of the CFP. +Be aware that at mid terms, we will select our “early speakers”, so do not wait till the end! +The final selection will happen within 4 weeks after the end of the CFP. ## Team This year, we will add even more community members that the core team already represent (GDG Toulouse, Toulouse Data Science, Duchess France, Toulouse DevOps, PitchMeUp, JAM) with the addition of .NET, React, JUG, Rust, Python & Linux / Embedded communities. -The complete list: +The complete list: ## Categories @@ -28,7 +28,7 @@ The complete list: * Methods & Tools : Craftsmanship, DevOps, CD, CI, IaC (Infrastructure as Code) etc. * Native mobile apps : Android, iOS, React Native, Flutter etc. * Web : PWA, Web Components, services workers etc. -* UX +* UX * WTF and other : if your talk does not fit in any of the previous categories. ## Formats @@ -59,7 +59,7 @@ If you are selected for a 15 minutes talk you will get: * Speaker Dinner access * One or two nights in an hotel close to the venue (on a case by case basis) -For all Flight/train reservations, please contact `speakers AT devfesttoulouse.fr` with the details of your prefered journey and we will get it for you. +For all Flight/train reservations, please contact `speakers AT devfesttoulouse.ru` with the details of your prefered journey and we will get it for you. In case your subject is not accepted, you will still be able to buy your ticket after the notification, at the normal price. @@ -72,4 +72,4 @@ The slides theme is entirely free, and the presentations will then be broadcast As explained above, the CFP will be opened till May the 25th 2019. Last year we got around 350 propositions, so do not wait till the last minute to [propose yours](https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi)! -If you have any questions, you can contact us at `contact AT devfesttoulouse.fr` or via Twitter [@DevFestToulouse](https://twitter.com/DevFestToulouse). +If you have any questions, you can contact us at `contact AT devfesttoulouse.ru` or via Twitter [@DevFestToulouse](https://twitter.com/DevFestToulouse). diff --git a/content/blog/cfp.fr.md b/content/blog/cfp.ru.md similarity index 93% rename from content/blog/cfp.fr.md rename to content/blog/cfp.ru.md index dfdb420a..03189c0e 100644 --- a/content/blog/cfp.fr.md +++ b/content/blog/cfp.ru.md @@ -17,7 +17,7 @@ La délibération finale se fera ensuite pendant le mois de Juin. Cette année, en plus des communautés déjà représentées par notre core team (GDG Toulouse, Toulouse Data Science, Duchess France, Toulouse DevOps, PitchMeUp, JAM) nous élargissons encore plus notre panel en ajoutant nos amis des communautés .NET, React, JUG, Rust, Python & Linux / Embedded -La liste de l'équipe au complet : +La liste de l'équipe au complet : ## Catégories @@ -44,7 +44,7 @@ Les orateurs sont invités à rejoindre le speaker booth après leur présentati ## Puis-je soumettre un talk avec un autre intervenant ? -Oui mais maximum à deux (vous inclu). Le deuxieme intervenant doit aussi avoir un compte sur la platforme CFP pour pouvoir l'ajouter avec son adresse e-mail. +Oui mais maximum à deux (vous inclu). Le deuxieme intervenant doit aussi avoir un compte sur la platforme CFP pour pouvoir l'ajouter avec son adresse e-mail. ## Avantages @@ -62,7 +62,7 @@ Si votre talk de 15 min est sélectionné vous aurez droit à : * Accès au dîner speaker * Une ou deux nuits d'hôtel proche de la conférence (au cas par cas) -Pour toute réservation de vols/trains, merci de contacter `speakers AT devfesttoulouse.fr` avec les détails d’horaires / préférences et nous nous chargerons de la réservation/paiement. +Pour toute réservation de vols/trains, merci de contacter `speakers AT devfesttoulouse.ru` avec les détails d’horaires / préférences et nous nous chargerons de la réservation/paiement. Au cas où votre sujet ne serait pas accepté, il vous sera encore possible d’acheter votre place après la notification, au tarif normal. @@ -75,4 +75,4 @@ Le thème des slides est entièrement libre. Les présentations seront ensuite d Comme dit ci-dessus, les soumissions sont ouvertes jusqu’au 25 Mai 2019. L’année dernière nous avons reçu plus de 350 soumissions ! N’attendez pas le dernier moment, [soumettez un talk dès à présent](https://conference-hall.io/public/event/HJRThubF4uYPkb7jSUxi) ! -Vous avez des questions ? Vous pouvez écrire un message à l’équipe à `contact AT devfesttoulouse.fr` ou bien sur notre compte Twitter [@DevFestToulouse](https://twitter.com/DevFestToulouse). +Vous avez des questions ? Vous pouvez écrire un message à l’équipe à `contact AT devfesttoulouse.ru` ou bien sur notre compte Twitter [@DevFestToulouse](https://twitter.com/DevFestToulouse). diff --git a/content/blog/find-out-when-is-edition-2019-contest.fr.md b/content/blog/find-out-when-is-edition-2019-contest.ru.md similarity index 100% rename from content/blog/find-out-when-is-edition-2019-contest.fr.md rename to content/blog/find-out-when-is-edition-2019-contest.ru.md diff --git a/content/blog/get-ready-for-2019.md b/content/blog/get-ready-for-2019.md index 55e7dafe..e0ea95f1 100644 --- a/content/blog/get-ready-for-2019.md +++ b/content/blog/get-ready-for-2019.md @@ -24,6 +24,6 @@ We will be communicating about this year theme pretty soon on Twitter [@DevFestT * [A video recap of 2018](https://www.youtube.com/watch?v=ZQGRMJzi6yU) * [Youtube playlist with 2018 talks](https://www.youtube.com/watch?v=ZQGRMJzi6yU&list=PLuZ_sYdawLiXmCwIYJs7AcBaXmUsVgPMU) * [2018 Official pictures](https://photos.google.com/share/AF1QipNXrf4emzX-sHvtCLQ6oJOHoTKs-JpNS34QLOQ3J_vQPIwAOS6mA1svo_-EUsLAdA?key=TVY3dlFTMHBkX2tYazR0U0lBTGhJMEpHZWE4UHR3) -* [2018 website](https://2018.devfesttoulouse.fr/) +* [2018 website](https://2018.devfesttoulouse.ru/) -We are waiting for you October 3rd, 2019! :-) \ No newline at end of file +We are waiting for you October 3rd, 2019! :-) diff --git a/content/blog/get-ready-for-2019.fr.md b/content/blog/get-ready-for-2019.ru.md similarity index 98% rename from content/blog/get-ready-for-2019.fr.md rename to content/blog/get-ready-for-2019.ru.md index ead1de03..b2f488db 100644 --- a/content/blog/get-ready-for-2019.fr.md +++ b/content/blog/get-ready-for-2019.ru.md @@ -24,6 +24,6 @@ Dans les jours/semaines à venir nous communiquerons sur le thème de l'édition * [Vidéo des meilleurs moments 2018](https://www.youtube.com/watch?v=ZQGRMJzi6yU) * [Retrouvez toutes les conférences de l’édition 2018](https://www.youtube.com/watch?v=ZQGRMJzi6yU&list=PLuZ_sYdawLiXmCwIYJs7AcBaXmUsVgPMU) * [Revivez l’édition 2018 avec les photos officielles](https://photos.google.com/share/AF1QipNXrf4emzX-sHvtCLQ6oJOHoTKs-JpNS34QLOQ3J_vQPIwAOS6mA1svo_-EUsLAdA?key=TVY3dlFTMHBkX2tYazR0U0lBTGhJMEpHZWE4UHR3) -* [Le programme et toutes les infos : sur le site Edition 2018](https://2018.devfesttoulouse.fr/) +* [Le programme et toutes les infos : sur le site Edition 2018](https://2018.devfesttoulouse.ru/) On vous attends le 3 Octobre 2019 ! :-) diff --git a/content/code-of-conduct.fr.md b/content/code-of-conduct.fr.md deleted file mode 100644 index 486d3b36..00000000 --- a/content/code-of-conduct.fr.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Code of Conduct - -draft: false ---- - -## 1. Purpose - -A primary goal of [GDG Toulouse](http://www.gdgtoulouse.fr/) is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof). -GDG Toulouse prides itself on being an open, respectful, and inclusive community. That means the [jerky behavior](https://meta.wikimedia.org/wiki/Don%27t_be_a_jerk) isn’t allowed at GDG meetings. - -This code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior. -We invite all those who participate in Google Developers Group to help us create safe and positive experiences for everyone. - -## 2. Open [Source/Culture/Tech] Citizenship - -A supplemental goal of this Code of Conduct is to increase open [source/culture/tech] citizenship by encouraging participants to recognize and strengthen the relationships between our actions and their effects on our community. Communities mirror the societies in which they exist, and positive action is essential to counteract the many forms of inequality and abuses of power that exist in society. If you see someone who is making an extra effort to ensure our community is welcoming, friendly, and encourages all participants to contribute to the fullest extent, we want to know. - -## 3. Expected Behavior - -The following behaviors are expected and requested of all community members: - -- Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community. -- Exercise consideration and respect in your speech and actions. -- Attempt collaboration before a conflict. -- Refrain from demeaning, discriminatory, or harassing behavior and speech. -- Be mindful of your surroundings and your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential. - -## 4. Unacceptable Behavior - -The following actions are considered harassment and are unacceptable within our community: - -- Violence, threats of violence or violent language directed against another person. -- Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language. -- Posting or displaying sexually explicit or violent material. -- Posting or threatening to post other people’s personally identifying information ("doxing"). -- Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability. -- Inappropriate photography or recording. -- Inappropriate physical contact. You should have someone’s consent before touching them. -- Unwelcome sexual attention. This includes sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances. -- Deliberate intimidation, stalking or following (online or in person). -- Advocating for, or encouraging, any of the above behavior. -- Sustained disruption of community events, including talks and, presentations. - -## 5. Consequences of Unacceptable Behavior - -Unacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated. -Anyone asked to stop unacceptable behavior is expected to comply immediately. -If a community member engages in unacceptable behavior, the community organizers may take any action they deem appropriate, up to and including a temporary ban or permanent expulsion from the community without warning (and without refund in the case of a paid event. - -## 6. Scope - -We expect all community participants to abide by this Code of Conduct in all community venues–online and in-person–as well as in all one-on-one communications about community business. This code of conduct and its related procedures also applies to unacceptable behavior occurring outside the scope of community activities when such behavior has the potential to affect the safety and well-being of community members adversely. - -## 7. Contact info - - diff --git a/content/code-of-conduct.md b/content/code-of-conduct.md index 486d3b36..a061f286 100644 --- a/content/code-of-conduct.md +++ b/content/code-of-conduct.md @@ -6,8 +6,8 @@ draft: false ## 1. Purpose -A primary goal of [GDG Toulouse](http://www.gdgtoulouse.fr/) is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof). -GDG Toulouse prides itself on being an open, respectful, and inclusive community. That means the [jerky behavior](https://meta.wikimedia.org/wiki/Don%27t_be_a_jerk) isn’t allowed at GDG meetings. +A primary goal of [GDG Vladivostok](https://gdgvl.ru/) is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof). +GDG Vladivostok prides itself on being an open, respectful, and inclusive community. That means the [jerky behavior](https://meta.wikimedia.org/wiki/Don%27t_be_a_jerk) isn’t allowed at GDG meetings. This code of conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior. We invite all those who participate in Google Developers Group to help us create safe and positive experiences for everyone. @@ -51,7 +51,3 @@ If a community member engages in unacceptable behavior, the community organizers ## 6. Scope We expect all community participants to abide by this Code of Conduct in all community venues–online and in-person–as well as in all one-on-one communications about community business. This code of conduct and its related procedures also applies to unacceptable behavior occurring outside the scope of community activities when such behavior has the potential to affect the safety and well-being of community members adversely. - -## 7. Contact info - - diff --git a/content/code-of-conduct.ru.md b/content/code-of-conduct.ru.md new file mode 100644 index 00000000..9e99d2a5 --- /dev/null +++ b/content/code-of-conduct.ru.md @@ -0,0 +1,55 @@ +--- +title: Кодекс поведения + +draft: false +--- + +_// _Автоматический перевод, предложения по изменению текста приветствуются_. **_ + +## 1. Цель + +Основная цель [GDG Vladivostok] (https://gdgvl.ru/) состоит в том, чтобы объединить наибольшее количество участников с максимально разнообразным опытом. Мы стремимся обеспечить дружественную, безопасную и гостеприимную среду для всех, независимо от пола, сексуальной ориентации, способностей, этнической принадлежности, социально-экономического статуса и религии (или их отсутствия). +GDG Владивосток гордится тем, что является открытым, уважительным и инклюзивным сообществом. Это означает, что [неуважительное поведение](https://meta.wikimedia.org/wiki/%D0%9D%D0%B5_%D0%B1%D1%83%D0%B4%D1%8C_%D0%BC%D1%83%D0%B4%D0%B0%D0%BA%D0%BE%D0%BC) не допускается на собраниях GDG. + +Этот кодекс поведения описывает наши ожидания от всех участников сообщества, а также последствия неприемлемого поведения. +Мы приглашаем всех участников Группы разработчиков Google помочь нам создать безопасный и позитивный опыт для всех. + +## 2. Открытое сообщество + +Дополнительная цель этого Кодекса поведения заключается в расширении открытого сообщества путем поощрения участников к признанию и усилению взаимосвязей между нашими действиями и их влиянием на наше сообщество. Сообщества отражают общества, в которых они существуют, и позитивные действия необходимы для противодействия многочисленным формам неравенства и злоупотреблениям властью, которые существуют в обществе. Если вы видите кого-то, кто прилагает дополнительные усилия, чтобы наше сообщество было доброжелательным, дружелюбным и поощряло всех участников вносить свой вклад в максимально возможной степени, мы хотим это знать. + +## 3. Ожидаемое поведение + +Ожидается, что все члены сообщества будут: + +- Принимать активное участие в полной мере, помогая тем самым развиваться и процветать сообществу. +- Проявлять внимание и уважение в своей речи и действиях. +- Пытаться сотрудничать, предотвращая конфликты. +- Воздерживаться от унизительного, дискриминационного или оскорбительного поведения и речи. +- Внимательными к окружению и к другим участникам сообщества. При обнаружении опасной ситуации, кого-то, попавшего в беду или нарушающего Кодекс поведения, предупреждать лидеров сообщества, даже если это кажется несущественными. + +## 4. Недопустимое поведение + +Следующие действия считаются неприемлемыми и недопустимы в нашем сообществе: + +- Насилие, угрозы насилия или насильственные выражения, направленные против другого человека. +- Сексистские, расистские, гомофобные, трансфобные, эйблистские или иные дискриминационные шутки и язык. +- Публикация или показ откровенно сексуальных или насильственных материалов. +- Размещение или угроза размещения информации, идентифицирующую других людей («doxing»). +- Личные оскорбления, особенно связанные с полом, сексуальной ориентацией, расой, религией или инвалидностью. +- Неуместные фотографии или записи. +- Физический контакт без предварительного согласия. Прежде чем к кому-то прикасаться, получите на это согласие. +- Сексуальное домогательство. Это включает в себя сексуальные комментарии или шутки, неуместные прикосновения, ощупывание и нежелательные сексуальные ухаживания. +- Умышленное запугивание, преследование или слежка (онлайн или лично). +- Поддержание или поощрение любых из вышеуказанных действий. +- Поведение, последствием которого является срыв проведения общественных мероприятий, в том числе переговоров и презентаций. + +## 5. Последствия недопустимого поведения + +Неприемлемое поведение со стороны любого члена сообщества, включая спонсоров и лиц, имеющих полномочия принимать решения, недопустимо. +Ожидается, что любой, кого попросят остановить неприемлемое поведение, немедленно выполнит просьбу. +Если член сообщества ведет себя неприемлемо, организаторы сообщества могут предпринять любые действия, которые они сочтут необходимыми, вплоть до временного запрета или постоянного исключения из сообщества без предупреждения (и без возмещения в случае платного мероприятия). + +## 6. Область применения + +Мы ожидаем, что все участники сообщества будут соблюдать этот Кодекс поведения на всех площадках сообщества - в режиме онлайн и лично, а также во всех личных сообщениях о работе сообщества. Этот кодекс поведения и связанные с ним процедуры также применяются к недопустимому поведению, происходящему за рамками деятельности сообщества, когда такое поведение может негативно повлиять на безопасность и благополучие членов сообщества. diff --git a/content/faq/index.fr.md b/content/faq/index.ru.md similarity index 95% rename from content/faq/index.fr.md rename to content/faq/index.ru.md index 492ef277..6eb0b6bc 100644 --- a/content/faq/index.fr.md +++ b/content/faq/index.ru.md @@ -23,7 +23,7 @@ Le DevFest s'inscrit dans un [cadre international](https://developers.google.com ### Les communautés organisatrices -Le DevFest Toulouse est un événement organisé par les communautés de développeurs de Toulouse et porté administrativement par le [GDG](http://www.gdgtoulouse.fr/) Toulouse. +Le DevFest Toulouse est un événement organisé par les communautés de développeurs de Toulouse et porté administrativement par le [GDG](http://www.gdgtoulouse.ru/) Toulouse. Vous retrouverez la liste des communautés en bas de page principale. Pour rendre tout cela possible, une équipe de bénévoles sur-vitaminée s’active en coulisse. @@ -50,9 +50,9 @@ Depuis l'aéroport _Blagnac_, deux solutions : Un parking (payant) est situé à deux pas de la conférence.
N'hésitez pas à faire du co-voiturage. * :train: **en train** :
-Depuis la gare _Matabiau_, -prenez simplement la ligne A du métro jusqu'à l'arrêt _Jean Jaurès_
-où vous prendrez une correspondance avec la ligne B du métro +Depuis la gare _Matabiau_, +prenez simplement la ligne A du métro jusqu'à l'arrêt _Jean Jaurès_
+où vous prendrez une correspondance avec la ligne B du métro afin de descendre à l'arrêt _Compans-Cafarelli_. * :metro: **en métro** :
Prenez la ligne B puis descendez à l'arrêt _Compans-Cafarelli_. @@ -65,7 +65,7 @@ Le dossier de partenariat est disponible [ici](https://drive.google.com/open?id= ## CFP -Toutes les infos sur [blog post CFP](/fr/blog/cfp/) +Toutes les infos sur [blog post CFP](/ru/blog/cfp/) ## Billetterie diff --git a/content/partners/_index.md b/content/partners/_index.md index 8ad4213e..fcf6e45d 100644 --- a/content/partners/_index.md +++ b/content/partners/_index.md @@ -11,9 +11,9 @@ draft: false If you wish to become a sponsor, consult our sponsorship file and contact us at -{{< button-link label="contact@devfesttoulouse.fr" - url="mailto:contact@devfesttoulouse.fr" - icon="email" >}} +{{< button-link label="contact@devfesttoulouse.ru" + url="mailto:contact@devfesttoulouse.ru" + icon="email" >}} {{% /hero %}} @@ -23,4 +23,4 @@ If you wish to become a sponsor, consult our sponsorship file and contact us at {{% partners categories="platinium,gold,startup,soutien,media,communautes" %}} -{{% /partners %}} \ No newline at end of file +{{% /partners %}} diff --git a/content/partners/_index.fr.md b/content/partners/_index.ru.md similarity index 64% rename from content/partners/_index.fr.md rename to content/partners/_index.ru.md index 961400d9..f4a26f29 100644 --- a/content/partners/_index.fr.md +++ b/content/partners/_index.ru.md @@ -11,12 +11,12 @@ draft: false Vous souhaitez devenir sponsor, consultez notre dossier de sponsoring et contactez-nous à -{{< button-link label="contact@devfesttoulouse.fr" - url="mailto:contact@devfesttoulouse.fr" - icon="email" >}} +{{< button-link label="contact@devfesttoulouse.ru" + url="mailto:contact@devfesttoulouse.ru" + icon="email" >}} {{% /hero %}} -{{< partners categories="platinium,gold,startup,soutien,media,communautes" >}} \ No newline at end of file +{{< partners categories="platinium,gold,startup,soutien,media,communautes" >}} diff --git a/content/partners/communautes/gdg-toulouse.md b/content/partners/communautes/gdg-toulouse.md index a1eca903..497c2477 100644 --- a/content/partners/communautes/gdg-toulouse.md +++ b/content/partners/communautes/gdg-toulouse.md @@ -2,11 +2,11 @@ title: GDG Toulouse type: partner category: communautes -website: 'https://www.gdgtoulouse.fr/' +website: 'https://www.gdgtoulouse.ru/' logo: /images/partners/community/gdgtoulouse.svg socials: [] --- -Find GDG Toulouse on [https://www.gdgtoulouse.fr/](https://www.gdgtoulouse.fr/) +Find GDG Toulouse on [https://www.gdgtoulouse.ru/](https://www.gdgtoulouse.ru/) ![GDG Toulouse](/images/partners/community/gdgtoulouse.svg) diff --git a/content/partners/communautes/rust-toulouse.md b/content/partners/communautes/rust-toulouse.md index 6b5c5c4b..e5eccb11 100644 --- a/content/partners/communautes/rust-toulouse.md +++ b/content/partners/communautes/rust-toulouse.md @@ -2,7 +2,7 @@ title: Rust Toulouse type: partner category: communautes -website: 'https://www.gdgtoulouse.fr/' +website: 'https://www.gdgtoulouse.ru/' logo: /images/partners/community/rust.png socials: [] --- diff --git a/content/partners/communautes/toulouse-data-science.md b/content/partners/communautes/toulouse-data-science.md index 7bee7827..853a4740 100644 --- a/content/partners/communautes/toulouse-data-science.md +++ b/content/partners/communautes/toulouse-data-science.md @@ -2,11 +2,11 @@ title: Toulouse Data Science type: partner category: communautes -website: 'http://www.tlse-data-science.fr/' +website: 'http://www.tlse-data-science.ru/' logo: /images/partners/community/tds.png socials: [] --- -Find Toulouse Data Science on [http://www.tlse-data-science.fr/](http://www.tlse-data-science.fr/) +Find Toulouse Data Science on [http://www.tlse-data-science.ru/](http://www.tlse-data-science.ru/) ![Toulouse Data Science](/images/partners/community/tds.png) diff --git a/content/partners/gold/informatique_banque_populaire.md b/content/partners/gold/informatique_banque_populaire.md index 3f3cd615..6946bd65 100644 --- a/content/partners/gold/informatique_banque_populaire.md +++ b/content/partners/gold/informatique_banque_populaire.md @@ -4,7 +4,7 @@ type: partner category: gold order: 3 logo: /images/partners/logo-informatique_banque_populaire.png -lang: fr +lang: ru why: "Le DevFest Toulouse est un événement incontournable pour tout acteur IT en Occitanie. C'est une évidence pour Informatique Banque Populaire de s'associer à cette manifestation faite pour et par des développeurs et qui chaque année rassemble à fois : le meilleur des connaissances, des speakers de qualité, une organisation au top et une ambiance de dingue !" socials: - icon: twitter diff --git a/content/partners/platinium/cenareo.md b/content/partners/platinium/cenareo.md index b33d9150..d9fc6945 100644 --- a/content/partners/platinium/cenareo.md +++ b/content/partners/platinium/cenareo.md @@ -4,7 +4,7 @@ type: partner category: platinium order: 7 logo: /images/partners/logo-cenareo.png -lang: fr +lang: ru why: "Dev Fest is the best place to meet future “tech heroes” that share our values and will help us to shape the future of our ‘state-of-the-art’ technology. #ProductExcellence #CustomerSatisfaction #TeamSpirits #Inventiveness #Daring & #Ambition" socials: diff --git a/content/partners/platinium/sii.md b/content/partners/platinium/sii.md index 5e4297fd..b2420c81 100644 --- a/content/partners/platinium/sii.md +++ b/content/partners/platinium/sii.md @@ -4,7 +4,7 @@ type: partner category: platinium order: 1 logo: /images/partners/logo-sii.png -lang: fr +lang: ru why: "It appeared essential to us to bring our support to this « don’t miss » event. We are quite pleased and proud to be able to play a concrete part in its success. " socials: - icon: facebook @@ -21,4 +21,3 @@ draft: false --- After 40 years of partnering with corporations for their engineering needs, the SII Group finds itself at the forefront of innovation and digital transformation. It relies on teams of expert engineers and on methods at the cutting-edge of quality standards for its business centered on engineering consulting (information technology, electronics and telecommunications) and digital services (engineering and network information technology). With nine field offices in France, the Group has built close relationships with local firms and offers a wide spectrum of career opportunities. Its presence in 18 countries and four continents also gives SII the ability to provide support for the international operations of major corporations. - diff --git a/content/partners/platinium/stack_labs.md b/content/partners/platinium/stack_labs.md index 61679891..42cb322d 100644 --- a/content/partners/platinium/stack_labs.md +++ b/content/partners/platinium/stack_labs.md @@ -4,7 +4,7 @@ type: partner category: platinium order: 0 logo: /images/partners/logo-stack_labs.svg -lang: fr +lang: ru why: "We want to share and meet cool & passionated developers during this incredible event !" socials: - icon: twitter diff --git a/content/partners/soutien/cnes.md b/content/partners/soutien/cnes.md index 80c78ba1..3ac0bc84 100644 --- a/content/partners/soutien/cnes.md +++ b/content/partners/soutien/cnes.md @@ -4,7 +4,7 @@ type: partner category: soutien order: 5 logo: /images/partners/logo-cnes.svg -lang: fr +lang: ru why: "Les métiers du CNES reposent de plus en plus sur l'informatique et le développement logiciel, que ce soit pour les logiciels bord ou les traitements au sol. Ces derniers utilisent de plus en plus les technologies issues du Big Data et du Machine Learning." socials: - icon: twitter diff --git a/content/partners/soutien/decasoft.md b/content/partners/soutien/decasoft.md index 0ba8b3d4..506b4cd8 100644 --- a/content/partners/soutien/decasoft.md +++ b/content/partners/soutien/decasoft.md @@ -4,7 +4,7 @@ type: partner category: soutien order: 8 logo: /images/partners/logo-decasoft.jpg -lang: fr +lang: ru why: "Pour rencontrer les acteurs du marché et s'investir sur l'avenir du numérique" socials: - icon: facebook @@ -21,4 +21,4 @@ draft: false --- Une société à taille humaine spécialisée en développement web et mobile implantée sur la ville lumière et la ville rose – Paris et Toulouse. Nous assurons l’évolution professionnelle de nos collaborateurs vers de nouvelles technologies afin de calibrer nos postes selon leurs envies. -Pour casser la routine, retrouvez-nous au baby-foot et aux soirées afterwork. Nous pouvons par ailleurs vous garantir une ambiance dynamique et 100% conviviale. +Pour casser la routine, retrouvez-nous au baby-foot et aux soirées afterwork. Nous pouvons par ailleurs vous garantir une ambiance dynamique et 100% conviviale. diff --git a/content/partners/soutien/morning.md b/content/partners/soutien/morning.md index 20430e6d..c29ddeb9 100644 --- a/content/partners/soutien/morning.md +++ b/content/partners/soutien/morning.md @@ -4,7 +4,7 @@ type: partner category: soutien order: 2 logo: /images/partners/logo-morning.svg -lang: fr +lang: ru why: "Morning est fier d'être un soutien du DevFest 2019 à Toulouse car c'est un évènement incontournable pour les développeurs ! En d'autres mots DevFest is the place to be !" socials: - icon: facebook @@ -20,7 +20,7 @@ socials: draft: false --- Au pied des Pyrénées, Morning et son équipe (ré)inventent les usages financiers. Dans un cadre authentique, l’équipe imagine et développe des solutions innovantes pour gérer son argent, disposer de moyens de paiement innovants et bénéficier de services sur-mesure. - + Aujourd’hui Morning c’est : Plus 150.000 comptes de paiement Morning Plus de 50 millions d’euros collectés sur les cagnottes diff --git a/content/partners/soutien/squoring_technologies.md b/content/partners/soutien/squoring_technologies.md index 4c105dd4..c17e0153 100644 --- a/content/partners/soutien/squoring_technologies.md +++ b/content/partners/soutien/squoring_technologies.md @@ -4,7 +4,7 @@ type: partner category: soutien order: 4 logo: /images/partners/logo-squoring_technologies.jpg -lang: fr +lang: ru why: "En tant qu'éditeur de logiciel à la pointe de l'innovation, notre participation au DevFest nous permet d'échanger avec tous les acteurs de notre écosystème sur les dernières avancées technologiques. A ce titre, tous les ingénieurs de notre équipe R&D sont invités à participer à l'événement pour partager et rester connectés avec la grande communauté des développeurs !" socials: - icon: twitter diff --git a/content/partners/startup/onestock.md b/content/partners/startup/onestock.md index b1258f43..f7f60df1 100644 --- a/content/partners/startup/onestock.md +++ b/content/partners/startup/onestock.md @@ -4,8 +4,8 @@ type: partner category: startup order: 9 logo: /images/partners/logo-onestock.png -lang: fr -why: "Nous sommes une Start up Toulousaine et nous travaillons dans un secteur innovant nécessitant une mise à jour constante de nos connaissances techniques. Nous travaillons avec des technologies encore assez peu utilisées comme le langage de programmation Go. +lang: ru +why: "Nous sommes une Start up Toulousaine et nous travaillons dans un secteur innovant nécessitant une mise à jour constante de nos connaissances techniques. Nous travaillons avec des technologies encore assez peu utilisées comme le langage de programmation Go. DevFest étant l'événement phare des Développeurs, pour nous, passionnés de Développement IT, il était impensable de ne pas faire partie de l'espace Start Up de l'événement DevFest 2019 ! " socials: - icon: twitter diff --git a/content/partners/startup/openairlines.md b/content/partners/startup/openairlines.md index 94dcaf91..465e1be0 100644 --- a/content/partners/startup/openairlines.md +++ b/content/partners/startup/openairlines.md @@ -4,7 +4,7 @@ type: partner category: startup order: 6 logo: /images/partners/logo-openairlines.png -lang: fr +lang: ru why: "OpenAirlines est fier de soutenir cet événement incontournable pour les développeurs ! On espère y rencontrer des développeurs curieux et innovants, motivés par les enjeux du réchauffement climatique et les défis technologiques qui permettront de sauver notre planète." socials: - icon: facebook @@ -21,6 +21,6 @@ draft: false --- Partant du constat que chaque année près de 660 millions de tonnes de CO2 sont émises par les avions, soit plus de 20 000 kilos de CO2 par seconde, cette clean-tech a décidé d’agir en développant des solutions innovantes pour aider les compagnies aériennes à réduire leurs coûts et leur impact environnemental. -Fruit de 7 ans de R&D, le logiciel d’éco-pilotage SkyBreathe® Fuel Efficiency sort sur le marché en 2013. S’appuyant sur des algorithmes de Big Data, d’Intelligence Artificielle et de Machine Learning, le logiciel analyse automatiquement les très nombreuses données disponibles dans les boites noires des avions afin d’évaluer l’efficacité énergétique des vols et émettre des recommandations permettant de réduire la consommation de carburant et les émissions de CO2 des avions. +Fruit de 7 ans de R&D, le logiciel d’éco-pilotage SkyBreathe® Fuel Efficiency sort sur le marché en 2013. S’appuyant sur des algorithmes de Big Data, d’Intelligence Artificielle et de Machine Learning, le logiciel analyse automatiquement les très nombreuses données disponibles dans les boites noires des avions afin d’évaluer l’efficacité énergétique des vols et émettre des recommandations permettant de réduire la consommation de carburant et les émissions de CO2 des avions. OpenAirlines est aujourd’hui leader sur son marché et emploie actuellement une quarantaine de collaborateurs à Toulouse et dans ses filiales à Hong Kong et à Miami. diff --git a/content/schedule/_index.fr.md b/content/schedule/_index.ru.md similarity index 100% rename from content/schedule/_index.fr.md rename to content/schedule/_index.ru.md diff --git a/content/sessions/_index.fr.md b/content/sessions/_index.ru.md similarity index 100% rename from content/sessions/_index.fr.md rename to content/sessions/_index.ru.md diff --git a/content/speakers/_index.fr.md b/content/speakers/_index.ru.md similarity index 100% rename from content/speakers/_index.fr.md rename to content/speakers/_index.ru.md diff --git a/content/speakers/marie_viley.md b/content/speakers/marie_viley.md index 0c8d44c7..3a9da324 100644 --- a/content/speakers/marie_viley.md +++ b/content/speakers/marie_viley.md @@ -11,8 +11,7 @@ socials: link: https://twitter.com/marie_viley name: marie_viley --- -Recruteuse chez Zenika, je me suis toujours intéressée à la communication non verbale et aux mécanismes d’influence et de prise de décision. -Ce qui me motive, c’est de comprendre au mieux les gens et de pouvoir échanger avec eux. -Fan des conférences TED et [#TRU] (https://www.linkhumans.fr/tru/) je suis constamment en veille sur le recrutement, le RGPD et les nouveautés tech. +Recruteuse chez Zenika, je me suis toujours intéressée à la communication non verbale et aux mécanismes d’influence et de prise de décision. +Ce qui me motive, c’est de comprendre au mieux les gens et de pouvoir échanger avec eux. +Fan des conférences TED et [#TRU] (https://www.linkhumans.ru/tru/) je suis constamment en veille sur le recrutement, le RGPD et les nouveautés tech. J’aime également le métal, la bière et Dikkenek ^^ - diff --git a/content/team/_index.fr.md b/content/team/_index.ru.md similarity index 100% rename from content/team/_index.fr.md rename to content/team/_index.ru.md diff --git a/data/footer.yml b/data/footer.yml index aae3a8fa..51ccaaed 100644 --- a/data/footer.yml +++ b/data/footer.yml @@ -5,27 +5,22 @@ share: url: https://twitter.com/intent/tweet?text= follow: - - name: facebook - url: https://www.facebook.com/GDGToulouse/ - - name: twitter - url: https://twitter.com/devfesttoulouse - - name: linkedin - url: https://www.linkedin.com/company/devfesttoulouse/ + - name: meetup + url: https://meetup.com/GDG-Vladivostok/ + - name: vk + url: https://vk.com/vldcorg - name: youtube - url: https://www.youtube.com/channel/UCx83f-KzDd3o1QK2AdJIftg + url: https://www.youtube.com/channel/UCuHtWBcO-TWUVDWUMQVZFFw content: - title: footer_about links: - - name: GDG Toulouse - url: http://gdgtoulouse.fr/ + - name: GDG Vladivostok + url: https://gdgvl.ru/ newTab: true - name: Google Developers Group url: https://developers.google.com/ newTab: true - - name: Kit de communication - url: /kit/MediaKit.zip - newTab: - nameKey: footer_coc url: /code-of-conduct/ newTab: false @@ -33,17 +28,16 @@ content: - title: footer_previous_edition links: - name: DevFest Toulouse 2018 - url: https://2018.devfesttoulouse.fr/ + url: https://2018.devfesttoulouse.ru/ newTab: true - name: DevFest Toulouse 2017 - url: https://2017.devfesttoulouse.fr/ + url: https://2017.devfesttoulouse.ru/ newTab: true - name: DevFest Toulouse 2016 - url: https://2016.devfesttoulouse.fr/ + url: https://2016.devfesttoulouse.ru/ newTab: true - # - title: footer_become_partners # links: # - nameKey: footer_become_partners_label # url: https://docs.google.com/presentation/d/e/2PACX-1vR9oEvhN0eKW6KeMqJzYZt1AtwiO5eyRhWcy6cXfE63vtZzX8U9B8_r2LpO6WIwDWjOoLkf10G7tFGO/pub?start=false&loop=true&delayms=0&slide=id.g376bab0a27_1_7 -# newTab: true \ No newline at end of file +# newTab: true diff --git a/data/partner.yml b/data/partner.yml index 31a34a38..b46e3664 100644 --- a/data/partner.yml +++ b/data/partner.yml @@ -1,8 +1,8 @@ en: - why: "Why be a partner of DevFest Toulouse 2019?" + why: "Why be a partner of DevFest Vladivostok 2019?" socials: "Find them via:" jobs: "They are recruiting, take the opportunity:" -fr: - why: "Pourquoi être partenaire du DevFest Toulouse 2019 ?" - socials: "Retrouvez les via :" - jobs: "Ils recrutent, profitez-en :" \ No newline at end of file +ru: + why: "Почему круто быть партнёром DevFest Владивосток 2019?" + socials: "Можно найти через:" + jobs: "Кстати, они ищут людей:" diff --git a/firebase.json b/firebase.json index 93fb369a..e7829392 100644 --- a/firebase.json +++ b/firebase.json @@ -5,12 +5,6 @@ "firebase.json", "**/.*", "**/node_modules/**" - ], - "rewrites": [ - { - "source": "**", - "destination": "/index.html" - } ] } } diff --git a/rename.sh b/rename.sh new file mode 100755 index 00000000..9182ca20 --- /dev/null +++ b/rename.sh @@ -0,0 +1,3 @@ +#!/bin/bash +name=`echo $1 | sed 's/\.fr\./\.ru\./'` +mv "$1" "$name" diff --git a/static/images/album/2018/1.jpg b/static/images/album/2018/1.jpg new file mode 100644 index 00000000..979608b3 Binary files /dev/null and b/static/images/album/2018/1.jpg differ diff --git a/static/images/album/2018/10.jpg b/static/images/album/2018/10.jpg new file mode 100644 index 00000000..3b62696e Binary files /dev/null and b/static/images/album/2018/10.jpg differ diff --git a/static/images/album/2018/2.jpg b/static/images/album/2018/2.jpg new file mode 100644 index 00000000..d959a3bc Binary files /dev/null and b/static/images/album/2018/2.jpg differ diff --git a/static/images/album/2018/3.jpg b/static/images/album/2018/3.jpg new file mode 100644 index 00000000..726aeb01 Binary files /dev/null and b/static/images/album/2018/3.jpg differ diff --git a/static/images/album/2018/4.jpg b/static/images/album/2018/4.jpg new file mode 100644 index 00000000..0e29f187 Binary files /dev/null and b/static/images/album/2018/4.jpg differ diff --git a/static/images/album/2018/5.jpg b/static/images/album/2018/5.jpg new file mode 100644 index 00000000..a2b1361f Binary files /dev/null and b/static/images/album/2018/5.jpg differ diff --git a/static/images/album/2018/6.jpg b/static/images/album/2018/6.jpg new file mode 100644 index 00000000..8f69a60a Binary files /dev/null and b/static/images/album/2018/6.jpg differ diff --git a/static/images/album/2018/7.jpg b/static/images/album/2018/7.jpg new file mode 100644 index 00000000..6cc7a797 Binary files /dev/null and b/static/images/album/2018/7.jpg differ diff --git a/static/images/album/2018/8.jpg b/static/images/album/2018/8.jpg new file mode 100644 index 00000000..0ad19199 Binary files /dev/null and b/static/images/album/2018/8.jpg differ diff --git a/static/images/album/2018/9.jpg b/static/images/album/2018/9.jpg new file mode 100644 index 00000000..1e10f3fd Binary files /dev/null and b/static/images/album/2018/9.jpg differ diff --git a/static/images/album/2018/_25A9282.jpg b/static/images/album/2018/_25A9282.jpg deleted file mode 100644 index 9a2b68cf..00000000 Binary files a/static/images/album/2018/_25A9282.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9296.jpg b/static/images/album/2018/_25A9296.jpg deleted file mode 100644 index 4d9de312..00000000 Binary files a/static/images/album/2018/_25A9296.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9313.jpg b/static/images/album/2018/_25A9313.jpg deleted file mode 100644 index a9a7ad2a..00000000 Binary files a/static/images/album/2018/_25A9313.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9317.jpg b/static/images/album/2018/_25A9317.jpg deleted file mode 100644 index 5a27e590..00000000 Binary files a/static/images/album/2018/_25A9317.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9326.jpg b/static/images/album/2018/_25A9326.jpg deleted file mode 100644 index a3674f21..00000000 Binary files a/static/images/album/2018/_25A9326.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9334.jpg b/static/images/album/2018/_25A9334.jpg deleted file mode 100644 index c1b48b45..00000000 Binary files a/static/images/album/2018/_25A9334.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9386.jpg b/static/images/album/2018/_25A9386.jpg deleted file mode 100644 index a600688b..00000000 Binary files a/static/images/album/2018/_25A9386.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9452.jpg b/static/images/album/2018/_25A9452.jpg deleted file mode 100644 index 4943b16f..00000000 Binary files a/static/images/album/2018/_25A9452.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9578.jpg b/static/images/album/2018/_25A9578.jpg deleted file mode 100644 index fa62c230..00000000 Binary files a/static/images/album/2018/_25A9578.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9612.jpg b/static/images/album/2018/_25A9612.jpg deleted file mode 100644 index dc46b09d..00000000 Binary files a/static/images/album/2018/_25A9612.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9628.jpg b/static/images/album/2018/_25A9628.jpg deleted file mode 100644 index 81a0ce6a..00000000 Binary files a/static/images/album/2018/_25A9628.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9671.jpg b/static/images/album/2018/_25A9671.jpg deleted file mode 100644 index 7424673f..00000000 Binary files a/static/images/album/2018/_25A9671.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9787.jpg b/static/images/album/2018/_25A9787.jpg deleted file mode 100644 index 8bc4d905..00000000 Binary files a/static/images/album/2018/_25A9787.jpg and /dev/null differ diff --git a/static/images/album/2018/_25A9930.jpg b/static/images/album/2018/_25A9930.jpg deleted file mode 100644 index b4d4a8e8..00000000 Binary files a/static/images/album/2018/_25A9930.jpg and /dev/null differ diff --git a/static/manifest.json b/static/manifest.json index 924205ae..3377b679 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1,6 +1,6 @@ { - "name": "DevFest Toulouse 2019", - "short_name": "DevFest TLS", + "name": "DevFest Vladivostok 2019", + "short_name": "DevFest VL", "icons": [ { "src": "/images/logos/devfest_color48.png", "sizes": "48x48", "type": "image/png" }, { "src": "/images/logos/devfest_color72.png", "sizes": "72x72", "type": "image/png" }, @@ -13,4 +13,4 @@ "theme_color": "#673ab7", "background_color": "#FFF", "display": "standalone" -} \ No newline at end of file +} diff --git a/themes/devfest-theme-hugo b/themes/devfest-theme-hugo index d528a8fc..14d3ff5e 160000 --- a/themes/devfest-theme-hugo +++ b/themes/devfest-theme-hugo @@ -1 +1 @@ -Subproject commit d528a8fc184cccb336a2b0e9a96f5d8603748916 +Subproject commit 14d3ff5e0ceb47383ac1eff0676c858c3610645e