Topics
10 | 11 |-
12 | {{- range . -}}
13 |
-
14 |
15 | 16 | 17 |18 | {{ .name }} 19 | 20 |
21 | {{- end -}}
22 |
├── static ├── .nojekyll ├── CNAME ├── robots.txt ├── favicon.ico ├── font │ ├── LICENSE │ ├── ubuntu-light.ttf │ ├── ubuntu-light.woff │ ├── ubuntu-light.woff2 │ ├── ubuntu-regular.ttf │ ├── ubuntu-regular.woff │ └── ubuntu-regular.woff2 ├── header.webp ├── health.webp ├── defense.webp ├── education.webp ├── factory.webp ├── og-banner.jpg ├── helicopter.webp ├── favicon-16x16.png ├── favicon-32x32.png ├── apple-touch-icon.png ├── economic-affairs.webp ├── public-order-safety.webp ├── social-protection.webp ├── environmental-protection.webp ├── general-public-services.webp ├── housing-community-amenities.webp ├── recreation-culture-religion.webp ├── .well-known │ └── security.txt ├── wikidata.svg ├── topic-icons │ ├── general-public-services.svg │ ├── education.svg │ ├── public-order-safety.svg │ ├── environmental-protection.svg │ ├── housing-community-amenities.svg │ ├── health.svg │ ├── defense.svg │ ├── recreation-culture-religion.svg │ ├── social-protection.svg │ └── economic-affairs.svg ├── social-icons │ ├── facebook.svg │ ├── X.svg │ ├── linkedin.svg │ ├── youtube.svg │ ├── mastodon.svg │ ├── instagram.svg │ └── website.svg ├── thirdparty │ └── octicons │ │ ├── code.svg │ │ └── note.svg ├── site.webmanifest ├── flag.svg ├── favicon-orange.svg ├── dpgbadge.svg ├── logo-white.svg └── logo-orange.svg ├── .gitignore ├── templates ├── components │ ├── spinner.html │ └── social-icons.html ├── map-data.json ├── helpers │ └── get-country-url.html ├── social-table.html ├── org-table.html ├── topic-list.html ├── country-list.html ├── sitemap.xml ├── 404.html ├── tools.html ├── countries-map.html ├── topic-page.html ├── landing.html ├── about.html ├── statistics.html ├── country-page.html ├── layouts │ └── layout.html └── statistics.svg ├── snowman.yaml ├── scripts ├── invalidate-social-media-country.sh ├── invalidate-optional-country.sh ├── tests │ └── spell-check.sh ├── check-labels.py └── check-expected-results-count.py ├── .github ├── ISSUE_TEMPLATE │ ├── other.yaml │ ├── config.yml │ ├── bug-report.yaml │ └── feature-request.yaml └── workflows │ ├── test.yml │ └── run-expected-count-script-on-pr.yml ├── SECURITY.md ├── queries ├── generators │ ├── uruguay.rq │ ├── peru.rq │ ├── united-states │ │ ├── new-york.rq │ │ └── north-carolina.rq │ ├── malta.rq │ ├── bermuda.rq │ ├── cameroon.rq │ ├── cuba.rq │ ├── malaysia.rq │ ├── ukraine.rq │ ├── united-kingdom.rq │ ├── canada.rq │ ├── czech-republic.rq │ ├── greenland.rq │ ├── nepal.rq │ ├── east-timor.rq │ ├── japan.rq │ ├── indonesia.rq │ ├── india.rq │ ├── iceland.rq │ ├── ghana.rq │ ├── russia.rq │ ├── singapore.rq │ ├── switzerland.rq │ ├── ireland.rq │ ├── philippines.rq │ ├── cyprus.rq │ ├── finland.rq │ ├── morocco.rq │ ├── latvia.rq │ ├── denmark.rq │ ├── south-africa.rq │ ├── portugal.rq │ ├── bulgaria.rq │ ├── chile.rq │ ├── luxembourg.rq │ ├── austria.rq │ ├── new-zealand.rq │ ├── norway.rq │ ├── germany.rq │ ├── united-states.rq │ ├── belgium.rq │ ├── netherlands.rq │ ├── sweden.rq │ └── united-kingdom │ │ └── scotland.rq ├── topics.rq ├── account-data.rq ├── organization-optional.rq └── countries.rq ├── justfile ├── PULL_REQUEST_TEMPLATE.md ├── CITATION.cff ├── DEPLOY.md ├── publiccode.yml ├── jargon.txt ├── CODE_OF_CONDUCT.md ├── README.md ├── views.yaml ├── LICENSE └── ADD_A_COUNTRY.md /static/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | www.govdirectory.org -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | site/* 2 | .snowman/* 3 | snowman 4 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap:https://www.govdirectory.org/sitemap.xml 2 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/font/LICENSE: -------------------------------------------------------------------------------- 1 | Ubuntu font licence 2 | 3 | https://ubuntu.com/legal/font-licence 4 | -------------------------------------------------------------------------------- /static/header.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/header.webp -------------------------------------------------------------------------------- /static/health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/health.webp -------------------------------------------------------------------------------- /static/defense.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/defense.webp -------------------------------------------------------------------------------- /static/education.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/education.webp -------------------------------------------------------------------------------- /static/factory.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/factory.webp -------------------------------------------------------------------------------- /static/og-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/og-banner.jpg -------------------------------------------------------------------------------- /static/helicopter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/helicopter.webp -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/economic-affairs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/economic-affairs.webp -------------------------------------------------------------------------------- /static/font/ubuntu-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-light.ttf -------------------------------------------------------------------------------- /static/font/ubuntu-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-light.woff -------------------------------------------------------------------------------- /static/font/ubuntu-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-light.woff2 -------------------------------------------------------------------------------- /static/font/ubuntu-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-regular.ttf -------------------------------------------------------------------------------- /static/font/ubuntu-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-regular.woff -------------------------------------------------------------------------------- /static/public-order-safety.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/public-order-safety.webp -------------------------------------------------------------------------------- /static/social-protection.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/social-protection.webp -------------------------------------------------------------------------------- /static/font/ubuntu-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/font/ubuntu-regular.woff2 -------------------------------------------------------------------------------- /static/environmental-protection.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/environmental-protection.webp -------------------------------------------------------------------------------- /static/general-public-services.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/general-public-services.webp -------------------------------------------------------------------------------- /static/housing-community-amenities.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/housing-community-amenities.webp -------------------------------------------------------------------------------- /static/recreation-culture-religion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/govdirectory/website/HEAD/static/recreation-culture-religion.webp -------------------------------------------------------------------------------- /templates/components/spinner.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /static/.well-known/security.txt: -------------------------------------------------------------------------------- 1 | Contact: https://github.com/govdirectory/website/security 2 | Preferred-Languages: en 3 | Canonical: https://govdirectory.org/.well-known/security.txt 4 | Policy: https://github.com/govdirectory/website/blob/main/SECURITY.md 5 | 6 | -------------------------------------------------------------------------------- /snowman.yaml: -------------------------------------------------------------------------------- 1 | sparql_client: 2 | endpoint: "https://query.wikidata.org/sparql" 3 | http_headers: 4 | User-Agent: "govdirectory.org build configuration example https://github.com/govdirectory/website/issues" 5 | metadata: 6 | root_url: "https://www.govdirectory.org/" 7 | -------------------------------------------------------------------------------- /templates/map-data.json: -------------------------------------------------------------------------------- 1 | [ 2 | {{- range $i, $m := $ -}} 3 | {{- if contains $m.safeName "/" -}} 4 | {{- continue -}} 5 | {{- end -}} 6 | {{- if $i -}},{{- end -}} 7 | ["{{ $m.safeName}}", "{{ $m.geoshape }}", "{{ $m.name }}", "{{ $m.description }}"] 8 | {{- end -}} 9 | ] -------------------------------------------------------------------------------- /static/wikidata.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/helpers/get-country-url.html: -------------------------------------------------------------------------------- 1 | {{/* "Function" takes the Wikidata URI for the country as input and "returns" the safeName */}} 2 | {{- $countryURI := . -}} 3 | {{- $countries := query "countries.rq" -}} 4 | {{- range $countries -}} 5 | {{- if eq .uri $countryURI -}} 6 | {{- .safeName -}} 7 | {{- end -}} 8 | {{- end -}} 9 | -------------------------------------------------------------------------------- /scripts/invalidate-social-media-country.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | if [[ $1 == "" ]] 4 | then 5 | echo "Missing the country argument." 6 | exit 0 7 | fi 8 | 9 | for i in $(find site/$1/* -type d); 10 | do 11 | qid=$(echo ${i%%/} | cut -f3 -d"/"); 12 | echo $qid 13 | snowman cache account-data.rq $qid --invalidate 14 | done 15 | -------------------------------------------------------------------------------- /scripts/invalidate-optional-country.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | if [[ $1 == "" ]] 4 | then 5 | echo "Missing the country argument." 6 | exit 0 7 | fi 8 | 9 | for i in $(find site/$1/* -type d); 10 | do 11 | qid=$(echo ${i%%/} | cut -f3 -d"/"); 12 | echo $qid 13 | snowman cache organization-optional.rq $qid --invalidate 14 | done 15 | -------------------------------------------------------------------------------- /static/topic-icons/general-public-services.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/social-icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/social-table.html: -------------------------------------------------------------------------------- 1 || Platform | 4 |Account | 5 |
|---|---|
| {{ .platformLabel }} | 10 |{{ .account }} | 11 |
| Name | 5 |Platforms | 6 |Type | 7 |
|---|---|---|
| {{ .orgLabel }} | 14 |{{ include "components/social-icons.html" .qid.String }} | 15 |{{ .typeLabel }} | 16 |
Would you like to see more countries added? Help us get the data in shape here.
23 |The page you were searching for is missing.
16 | 17 |We are looking for it.
18 | 19 | {{- include "components/spinner.html" -}} 20 |Making your life easier.
13 |This browser extension helps you identify directly on a social media platform if that account also is in Govdirectory.
26 |Help improve it. 27 | Firefox add-on 28 |
| Name | 34 |Platforms | 35 |Type | 36 |Country | 37 |
|---|---|---|---|
| {{ .orgLabel }} | 47 |{{ include "components/social-icons.html" .qid.String }} | 48 |{{ .typeLabel }} | 49 |{{ $countryLabel }} | 50 |
The easiest way to contact your government.
16 |83 | Would you like to see more countries added? Help us get the data in shape here. 84 |
85 |The easiest way to contact your government.
13 |Our vision is a world where people are empowered to engage with their government to ensure responsive, inclusive, participatory and representative decision-making at all levels.
21 |We will enable a community powered directory where the online presence of every public organization is easily findable, queryable and trustworthy.
27 |Support our efforts in creating transparency about governmental institutions and their activities online
38 | Learn more about the community 39 |Based on Wikipedia's sister project Wikidata the data is constantly fact checked by a rigorous and dedicated community. With the help of tools that help monitor changes in data and entering data correctly, collectively the data can be kept up to date and accurate.
49 |The project won a WikidataCon community award in 2021, was recognized as a Digital Public Goods by the Digital Public Goods Alliance in September 2022 and made the finalists in the category Peace – Building peaceful and inclusive societies in the SDG Game Changes Award in September 2023. In 2024, it was selected as a champion in the World Summit on the Information Society Prizes 2024 in the category "The role of governments and all stakeholders in the promotion of ICTs for development".
66 |This project was initially supported through Wikimedia Deutschland's Unlock Accelerator. Wikimedia Sverige is graciously providing us with Matomo analytics. The data we collect is publicly accessible.
75 |Last updated . Live website usage statistics are publicly accessible through Matomo.
63 | 64 |In the table below we have listed the types of organizations that are covered for each country. The amount of information about those organizations and contact points for them varies and is also improved over time.
80 | 81 || Country | 84 |Contains | 85 |Organizations | 86 |Contact points | 87 |
|---|---|---|---|
| {{ .name }} | 120 |{{ .description }} | 121 |{{ $country_org_count }} | 122 |{{ add $social_cp_count $other_cp }} | 123 |
{{ .nativeLabel }}
19 |{{ .description }}
20 | 21 |