diff --git a/.env.docker b/.env.docker index 093f173..0657fe4 100755 --- a/.env.docker +++ b/.env.docker @@ -3,3 +3,4 @@ AWS_SECRET_ACCESS_KEY AWS_S3_BUCKET_NAME AWS_S3_BUCKET_ENDPOINT AWS_CLOUDFRONT_ID +GOOGLE_MAP_API_KEY diff --git a/.env.sample b/.env.sample index 47521df..190ab4b 100755 --- a/.env.sample +++ b/.env.sample @@ -3,3 +3,4 @@ AWS_SECRET_ACCESS_KEY= AWS_S3_BUCKET_NAME= AWS_S3_BUCKET_ENDPOINT= AWS_CLOUDFRONT_ID= +GOOGLE_MAP_API_KEY= diff --git a/CNAME b/CNAME deleted file mode 100644 index afa8020..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -rubyconfth.com \ No newline at end of file diff --git a/_config.yml b/_config.yml index 9a159bf..c1fc0f6 100755 --- a/_config.yml +++ b/_config.yml @@ -33,7 +33,7 @@ defaults: layout: default seo: description: "Join us for the first ever Ruby conference in Thailand" - image: "/public/images/social/og-icon.jpg" + image: "/public/images/social/opengraph.png" includes: - assets diff --git a/_data/social_platforms.yml b/_data/social_platforms.yml index cfc9f10..832829a 100644 --- a/_data/social_platforms.yml +++ b/_data/social_platforms.yml @@ -1,6 +1,6 @@ - name: Facebook icon: facebook - url: https://www.facebook.com/Rubyconfth-294423114523650 + url: https://www.facebook.com/rubyconfth - name: Twitter icon: twitter url: https://twitter.com/rubyconfth diff --git a/_data/speakers/keynote.yml b/_data/speakers/keynote.yml new file mode 100644 index 0000000..7bb10a0 --- /dev/null +++ b/_data/speakers/keynote.yml @@ -0,0 +1,18 @@ +- first_name: Tim + last_name: Riley + twitter_handle: "@timriley" + photo_url: /assets/images/pages/home/speakers/tim-riley.png + bio: | + Tim is a partner at Icelab, an Australian design agency, and a committed open source software contributor. Heβs a co-founder and core team member of dry-rb, core team member of rom-rb, and part of the team building Hanami version 2. +- first_name: Richard + last_name: Schneeman + twitter_handle: "@schneems" + photo_url: /assets/images/pages/home/speakers/richard-schneeman.png + bio: | + Richards codes for Heroku & is married to Ruby, literally. He built CodeTriage.com, the easiest way to get started contributing to Open Source. He also runs a quirky conf in Austin, Texas @keeprubyweird. +- first_name: Saron + last_name: Yitbarek + twitter_handle: "@saronyitbarek" + photo_url: /assets/images/pages/home/speakers/saron-yitbarek.png + bio: | + Saron is the CEO and founder of CodeNewbie, the most supportive community of programmers and people learning to code. She's also a developer, speaker, and podcaster. \ No newline at end of file diff --git a/_data/sponsors.yml b/_data/sponsors.yml new file mode 100644 index 0000000..dca7db5 --- /dev/null +++ b/_data/sponsors.yml @@ -0,0 +1,10 @@ +- title: Official Sponsor and Partner + companies: + - name: Nimble + url: https://nimblehq.co/ + logo_url: /assets/images/pages/home/sponsors/logo-nimble.jpg +- title: Ticketing Partner + companies: + - name: Eventpop + url: https://www.eventpop.me/ + logo_url: /assets/images/pages/home/sponsors/logo-eventpop.jpg diff --git a/_includes/footer.html b/_includes/footer.html index f6736eb..a0a373a 100755 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,16 @@ diff --git a/_includes/head.html b/_includes/head.html index a78f954..8842072 100755 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,5 +1,5 @@ {% capture parent_page_title %}{% if page.parent %}{{ page.parent | capitalize }} | {% endif %}{% endcapture %} -{% capture meta_title %}{{ site.name | append: ' | ' | append: parent_page_title | append: page.title }}{% endcapture %} +{% capture meta_title %}{{ page.title | append: parent_page_title | append: ' | ' | append: site.name }}{% endcapture %} {% capture meta_description %}{% if page.seo.description %}{{ page.seo.description }}{% else %}{{ site.seo.description }}{% endif %}{% endcapture %}