├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── badges.jpg └── public ├── badges ├── CommunityRun.svg ├── E2Encrypted.svg ├── HackingForFreedom.svg ├── HackingForImpact.svg ├── MadeWithFreeSoftware.svg ├── NoBackdoors.svg ├── OpenSource4theWin.svg ├── PrivacyFriendly.svg ├── SecureByDesign.svg ├── WeDecentralize.svg └── WeFederate.svg └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | _private/ 7 | .deploy*/ 8 | .users.yml 9 | .env 10 | .env.yml 11 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | image: alpine:latest 2 | 3 | pages: 4 | stage: deploy 5 | script: 6 | - echo 'Nothing to do...' 7 | artifacts: 8 | paths: 9 | - public 10 | only: 11 | - master 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # :flags: Fetch the badge 3 | 4 | `GitHub WARNING`: This is a __mirror repo__ from [GitLab](https://gitlab.com/distributopia/fetch-the-badge). Please, send your MRs there. Issues can still be opened here and are welcome. 5 | 6 | > This is a collection of sweet badges for fedizens. 7 | 8 | Does your repo need more individuality than "build : passing"? 9 | 10 | ![preview screen](badges.jpg?raw=true) 11 | 12 | _*"hacking for freedom" - taken from [FSFE's](https://fsfe.org/contribute/spreadtheword#how-to-order) materials, by Markus Meier._ 13 | 14 | #### [DEMO page](https://distributopia.gitlab.io/fetch-the-badge) 15 | 16 | ## How to use 17 | 18 | Demo page is currently hosted by GitLab pages. Extensive use of badges as `` sources might be regarded as hotlinking, so we wouldn't encourage it. You can grab SVGs from [badges](/public/badges) folder and host them somewhere. 19 | 20 | If you wish to use a badge on your website page, and not on a GitHub repo, insert SVG directly into your HTML. 21 | 22 | ## Contributing 23 | 24 | Don't hesitate to suggest text for new badges in issues or via merge requests in the main [GitLab](https://gitlab.com/distributopia/fetch-the-badge) repo. In case of MR, please, also include a new gradient for your badge. 25 | 26 | Please, try to avoid mainstream badge texts. For fun badges go [here](https://forthebadge.com). For common badges go [there](https://shields.io). Also check out [ethical design](https://ind.ie/ethical-design) badges. 27 | -------------------------------------------------------------------------------- /badges.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distributopia/fetch-the-badge/5e3be44ce2db3f292258129fc4979f4da59d77f6/badges.jpg -------------------------------------------------------------------------------- /public/badges/CommunityRun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | communitycommunity 11 | runrun 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/E2Encrypted.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | e2ee2e 11 | encryptedencrypted 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/HackingForFreedom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | hackinghacking 11 | for freedomfor freedom 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/HackingForImpact.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | hackinghacking 11 | for impactfor impact 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/MadeWithFreeSoftware.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | made withmade with 11 | free softwarefree software 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/NoBackdoors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | nono 8 | backdoorsbackdoors 9 | 10 | 11 | -------------------------------------------------------------------------------- /public/badges/OpenSource4theWin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | open sourceopen source 11 | for the winfor the win 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/PrivacyFriendly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | privacyprivacy 11 | friendlyfriendly 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/SecureByDesign.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | securesecure 11 | by designby design 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/WeDecentralize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | wewe 11 | decentralizedecentralize 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/badges/WeFederate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | wewe 11 | federatefederate 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fetch the Badge 6 | 7 | 8 | 31 | 32 | 33 | 34 |
35 |

Fetch the Badge

36 |

37 | open source for the win badge 38 | made with free software badge 39 | hacking for freedom badge 40 | hacking for impact badge 41 |

42 |

43 | we federate badge 44 | WeDecentralize badge 45 |

46 |

47 | community run badge 48 | secure by design badge 49 | privacy friendly badge 50 | e2e encrypted badge 51 | no backdoors badge 52 |

53 |
54 | 55 | 56 | --------------------------------------------------------------------------------