Fetch the Badge
36 |
37 |
38 |
39 |
40 |
41 |
43 |
44 |
45 |
47 |
48 |
49 |
50 |
51 |
52 |
├── .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 | 
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 |
14 |
--------------------------------------------------------------------------------
/public/badges/E2Encrypted.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/HackingForFreedom.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/HackingForImpact.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/MadeWithFreeSoftware.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/NoBackdoors.svg:
--------------------------------------------------------------------------------
1 |
2 |
11 |
--------------------------------------------------------------------------------
/public/badges/OpenSource4theWin.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/PrivacyFriendly.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/SecureByDesign.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/WeDecentralize.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/badges/WeFederate.svg:
--------------------------------------------------------------------------------
1 |
2 |
14 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
37 |
38 |
39 |
40 |
41 |
43 |
44 |
45 |
47 |
48 |
49 |
50 |
51 |
52 |