├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── config.rb ├── config.ru ├── data └── countries.yml └── source ├── CNAME ├── _footer.erb ├── country_template.html.erb ├── favicon.ico ├── images ├── avatar_bruce.jpg ├── cover.jpg └── og_image.jpg ├── index.html.erb ├── javascripts └── all.js ├── layouts └── layout.erb └── stylesheets ├── _normalize.scss └── site.css.scss /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/README.md -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/config.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/config.ru -------------------------------------------------------------------------------- /data/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/data/countries.yml -------------------------------------------------------------------------------- /source/CNAME: -------------------------------------------------------------------------------- 1 | taiwanese-work.in 2 | -------------------------------------------------------------------------------- /source/_footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/_footer.erb -------------------------------------------------------------------------------- /source/country_template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/country_template.html.erb -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/favicon.ico -------------------------------------------------------------------------------- /source/images/avatar_bruce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/images/avatar_bruce.jpg -------------------------------------------------------------------------------- /source/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/images/cover.jpg -------------------------------------------------------------------------------- /source/images/og_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/images/og_image.jpg -------------------------------------------------------------------------------- /source/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/index.html.erb -------------------------------------------------------------------------------- /source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/layouts/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/layouts/layout.erb -------------------------------------------------------------------------------- /source/stylesheets/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/stylesheets/_normalize.scss -------------------------------------------------------------------------------- /source/stylesheets/site.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taiwanese-work-in/foreign-country/HEAD/source/stylesheets/site.css.scss --------------------------------------------------------------------------------