├── src
├── favicon.png
├── assets
│ ├── icons
│ │ ├── grid.png
│ │ └── list.png
│ ├── fonts
│ │ ├── RobotoMono-Thin.ttf
│ │ └── RobotoMono-Variable.ttf
│ └── styles
│ │ ├── media-queries.scss
│ │ └── global.scss
├── utils
│ ├── group-countries.js
│ ├── title-update-animation.js
│ ├── country-emojis.js
│ └── formatRawData.js
├── main.js
├── pages
│ ├── About.vue
│ └── Index.vue
├── layouts
│ └── Default.vue
└── components
│ ├── Countries.vue
│ ├── Dropdown.vue
│ ├── Toolbox.vue
│ └── Country.vue
├── static
├── favicon.png
└── app-icons
│ ├── windows10
│ ├── StoreLogo.png
│ ├── StoreLogo.scale-100.png
│ ├── StoreLogo.scale-125.png
│ ├── StoreLogo.scale-150.png
│ ├── StoreLogo.scale-200.png
│ ├── StoreLogo.scale-400.png
│ ├── SplashScreen.scale-100.png
│ ├── SplashScreen.scale-125.png
│ ├── SplashScreen.scale-150.png
│ ├── SplashScreen.scale-200.png
│ ├── SplashScreen.scale-400.png
│ ├── Square44x44Logo.scale-100.png
│ ├── Square44x44Logo.scale-125.png
│ ├── Square44x44Logo.scale-150.png
│ ├── Square44x44Logo.scale-200.png
│ ├── Square44x44Logo.scale-400.png
│ ├── Square71x71Logo.scale-100.png
│ ├── Square71x71Logo.scale-125.png
│ ├── Square71x71Logo.scale-150.png
│ ├── Square71x71Logo.scale-200.png
│ ├── Square71x71Logo.scale-400.png
│ ├── Wide310x150Logo.scale-100.png
│ ├── Wide310x150Logo.scale-125.png
│ ├── Wide310x150Logo.scale-150.png
│ ├── Wide310x150Logo.scale-200.png
│ ├── Wide310x150Logo.scale-400.png
│ ├── Square150x150Logo.scale-100.png
│ ├── Square150x150Logo.scale-125.png
│ ├── Square150x150Logo.scale-150.png
│ ├── Square150x150Logo.scale-200.png
│ ├── Square150x150Logo.scale-400.png
│ ├── Square310x310Logo.scale-100.png
│ ├── Square310x310Logo.scale-125.png
│ ├── Square310x310Logo.scale-150.png
│ ├── Square310x310Logo.scale-200.png
│ ├── Square310x310Logo.scale-400.png
│ ├── Square44x44Logo.targetsize-16.png
│ ├── Square44x44Logo.targetsize-24.png
│ ├── Square44x44Logo.targetsize-256.png
│ ├── Square44x44Logo.targetsize-32.png
│ ├── Square44x44Logo.targetsize-48.png
│ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ ├── Square44x44Logo.targetsize-32_altform-unplated.png
│ └── Square44x44Logo.targetsize-48_altform-unplated.png
│ ├── msteams
│ ├── msteams-192-192.png
│ └── msteams-silhouette-32-32.png
│ ├── chrome
│ ├── chrome-favicon-16-16.png
│ ├── chrome-installprocess-128-128.png
│ └── chrome-extensionmanagementpage-48-48.png
│ ├── firefox
│ ├── firefox-general-16-16.png
│ ├── firefox-general-32-32.png
│ ├── firefox-general-48-48.png
│ ├── firefox-general-64-64.png
│ ├── firefox-general-90-90.png
│ ├── firefox-general-128-128.png
│ ├── firefox-general-256-256.png
│ ├── firefox-marketplace-128-128.png
│ └── firefox-marketplace-512-512.png
│ ├── windows
│ ├── windows-storelogo-50-50.png
│ ├── windows-storelogo-70-70.png
│ ├── windows-storelogo-90-90.png
│ ├── windows-smallsquare-24-24.png
│ ├── windows-smallsquare-30-30.png
│ ├── windows-smallsquare-42-42.png
│ ├── windows-smallsquare-54-54.png
│ ├── windows-squarelogo-120-120.png
│ ├── windows-squarelogo-150-150.png
│ ├── windows-squarelogo-210-210.png
│ ├── windows-squarelogo-270-270.png
│ ├── windowsphone-appicon-44-44.png
│ ├── windowsphone-appicon-62-62.png
│ ├── windows-splashscreen-1116-540.png
│ ├── windows-splashscreen-620-300.png
│ ├── windows-splashscreen-868-420.png
│ ├── windowsphone-appicon-106-106.png
│ ├── windowsphone-smalltile-71-71.png
│ ├── windowsphone-smalltile-99-99.png
│ ├── windowsphone-storelogo-50-50.png
│ ├── windowsphone-storelogo-70-70.png
│ ├── windowsphone-mediumtile-150-150.png
│ ├── windowsphone-mediumtile-210-210.png
│ ├── windowsphone-mediumtile-360-360.png
│ ├── windowsphone-smalltile-170-170.png
│ └── windowsphone-storelogo-120-120.png
│ ├── android
│ ├── android-launchericon-48-48.png
│ ├── android-launchericon-72-72.png
│ ├── android-launchericon-96-96.png
│ ├── android-launchericon-144-144.png
│ ├── android-launchericon-192-192.png
│ └── android-launchericon-512-512.png
│ └── icons.json
├── .gitignore
├── gridsome.config.js
├── package.json
├── README.md
└── LICENSE.md
/src/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/src/favicon.png
--------------------------------------------------------------------------------
/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/favicon.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.log
2 | .cache
3 | .DS_Store
4 | src/.temp
5 | node_modules
6 | dist
7 | .env
8 | .env.*
9 |
--------------------------------------------------------------------------------
/src/assets/icons/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/src/assets/icons/grid.png
--------------------------------------------------------------------------------
/src/assets/icons/list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/src/assets/icons/list.png
--------------------------------------------------------------------------------
/src/assets/fonts/RobotoMono-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/src/assets/fonts/RobotoMono-Thin.ttf
--------------------------------------------------------------------------------
/src/assets/fonts/RobotoMono-Variable.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/src/assets/fonts/RobotoMono-Variable.ttf
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.png
--------------------------------------------------------------------------------
/static/app-icons/msteams/msteams-192-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/msteams/msteams-192-192.png
--------------------------------------------------------------------------------
/static/app-icons/chrome/chrome-favicon-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/chrome/chrome-favicon-16-16.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-16-16.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-32-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-32-32.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-48-48.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-64-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-64-64.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-90-90.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-128-128.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-general-256-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-general-256-256.png
--------------------------------------------------------------------------------
/static/app-icons/msteams/msteams-silhouette-32-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/msteams/msteams-silhouette-32-32.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-storelogo-50-50.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-storelogo-70-70.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-storelogo-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-storelogo-90-90.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-48-48.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-72-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-72-72.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-96-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-96-96.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-marketplace-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-marketplace-128-128.png
--------------------------------------------------------------------------------
/static/app-icons/firefox/firefox-marketplace-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/firefox/firefox-marketplace-512-512.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-smallsquare-24-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-smallsquare-24-24.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-smallsquare-30-30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-smallsquare-30-30.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-smallsquare-42-42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-smallsquare-42-42.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-smallsquare-54-54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-smallsquare-54-54.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-squarelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-squarelogo-120-120.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-squarelogo-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-squarelogo-150-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-squarelogo-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-squarelogo-210-210.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-squarelogo-270-270.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-squarelogo-270-270.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-appicon-44-44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-appicon-44-44.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-appicon-62-62.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-appicon-62-62.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square71x71Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square71x71Logo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square71x71Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square71x71Logo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square71x71Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square71x71Logo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square71x71Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square71x71Logo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square71x71Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square71x71Logo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-144-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-144-144.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-192-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-192-192.png
--------------------------------------------------------------------------------
/static/app-icons/android/android-launchericon-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/android/android-launchericon-512-512.png
--------------------------------------------------------------------------------
/static/app-icons/chrome/chrome-installprocess-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/chrome/chrome-installprocess-128-128.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-splashscreen-1116-540.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-splashscreen-1116-540.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-splashscreen-620-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-splashscreen-620-300.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windows-splashscreen-868-420.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windows-splashscreen-868-420.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-appicon-106-106.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-appicon-106-106.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-smalltile-71-71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-smalltile-71-71.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-smalltile-99-99.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-smalltile-99-99.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-storelogo-50-50.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-storelogo-70-70.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square310x310Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square310x310Logo.scale-100.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square310x310Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square310x310Logo.scale-125.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square310x310Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square310x310Logo.scale-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square310x310Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square310x310Logo.scale-200.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square310x310Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square310x310Logo.scale-400.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-mediumtile-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-mediumtile-150-150.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-mediumtile-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-mediumtile-210-210.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-mediumtile-360-360.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-mediumtile-360-360.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-smalltile-170-170.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-smalltile-170-170.png
--------------------------------------------------------------------------------
/static/app-icons/windows/windowsphone-storelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows/windowsphone-storelogo-120-120.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-32.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/static/app-icons/chrome/chrome-extensionmanagementpage-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/chrome/chrome-extensionmanagementpage-48-48.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-32_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-32_altform-unplated.png
--------------------------------------------------------------------------------
/static/app-icons/windows10/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lissy93/all-the-countries/HEAD/static/app-icons/windows10/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/src/utils/group-countries.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | const groupCountries = (countries, groupBy) => {
4 | if (!groupBy) return countries;
5 | const regions = {};
6 | countries.forEach(country => {
7 | if (!regions[country[groupBy]]) regions[country[groupBy]] = [];
8 | regions[country[groupBy]].push(country);
9 | });
10 | return regions;
11 | };
12 |
13 |
14 | module.exports = groupCountries;
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | // This is the main.js file. Import global CSS and scripts here.
2 | // Docs: gridsome.org/docs/client-api
3 |
4 | import DefaultLayout from '~/layouts/Default.vue'
5 | import '~/assets/styles/global.scss'
6 | import '~/assets/styles/media-queries.scss'
7 |
8 | export default function (Vue, { router, head, isClient }) {
9 | // Set default layout as a global component
10 | Vue.component('Layout', DefaultLayout)
11 | }
12 |
--------------------------------------------------------------------------------
/src/pages/About.vue:
--------------------------------------------------------------------------------
1 |
2 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Error doloremque omnis animi, eligendi magni a voluptatum, vitae, consequuntur rerum illum odit fugit assumenda rem dolores inventore iste reprehenderit maxime! Iusto.About us
4 |
3 | A simple app listing all the countries of the world along with flags, capital cities and info 4 |
5 | 6 |
7 |
8 |
9 |
10 |
24 | © Alicia Sykes 2021
25 | Licensed under MIT
26 |
27 |
{{capital ? capital : '[NO CAPITAL]'}}
8 |Region: {{region}} ({{subregion}})
17 |Languages: {{makeTextList(languages)}}
18 |Currencies: {{makeTextList(currencies)}}
19 |Domain Extension: {{makeTextList(tld)}}
20 |Calling Codes: {{makeTextList(callingCodes)}}
21 |Country Code (ISO 3166-1): {{isoCodes.cca3}} / {{isoCodes.ccn3}}
22 |Land Size: {{area}} km²
23 |Land Locked?: {{landlocked? 'Yes' : 'No'}}
24 |UN Member: {{unMember? 'Yes' : 'No'}}
25 |