mirror of
https://git.coop/cotech/website.git
synced 2025-12-16 18:37:32 +00:00
Compare commits
1 Commits
master
...
remove-bla
| Author | SHA1 | Date | |
|---|---|---|---|
| 023d66d0d4 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,4 +1,2 @@
|
||||
_site
|
||||
.idea
|
||||
vendor
|
||||
*.swp
|
||||
|
||||
@ -1,30 +1,18 @@
|
||||
---
|
||||
image: ruby:3.4.4
|
||||
|
||||
stages:
|
||||
- test
|
||||
- staging
|
||||
- production
|
||||
image: ruby:2.5.3
|
||||
|
||||
variables:
|
||||
JEKYLL_ENV: production
|
||||
LC_ALL: C.UTF-8
|
||||
|
||||
cache:
|
||||
key: gems
|
||||
paths:
|
||||
- vendor
|
||||
|
||||
before_script:
|
||||
- 'which rsync || ( apt-get update -qq && apt-get install rsync -yqq )'
|
||||
- eval $(ssh-agent -s)
|
||||
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
|
||||
- mkdir -p ~/.ssh
|
||||
- chmod 700 ~/.ssh
|
||||
- ssh-keyscan www.cotech.coop > ~/.ssh/known_hosts
|
||||
- ssh-keyscan 81.95.52.13 >> ~/.ssh/known_hosts
|
||||
- echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
|
||||
- chmod 644 ~/.ssh/known_hosts
|
||||
- bundle install --path vendor
|
||||
- bundle install
|
||||
|
||||
test:
|
||||
stage: test
|
||||
@ -36,35 +24,25 @@ test:
|
||||
except:
|
||||
- master
|
||||
|
||||
deploy:dev:
|
||||
stage: staging
|
||||
script:
|
||||
- bundle exec jekyll build -d public
|
||||
- rsync -aqz --delete-after public/ cotech@www.cotech.coop:sites/dev/
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
environment:
|
||||
name: dev
|
||||
url: https://dev.cotech.coop
|
||||
only:
|
||||
- master
|
||||
|
||||
deploy:production:
|
||||
stage: production
|
||||
stage: deploy
|
||||
script:
|
||||
- bundle exec jekyll build -d public
|
||||
- rsync -aqz --delete-after public/ cotech@www.cotech.coop:sites/default/
|
||||
- rsync -aqz public/ cotech@webarch2.co.uk:sites/default/
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
environment:
|
||||
name: production
|
||||
url: https://www.cotech.coop
|
||||
only:
|
||||
- master
|
||||
when: manual
|
||||
|
||||
after_script:
|
||||
- rm -rf /root/.ssh/
|
||||
...
|
||||
|
||||
deploy:dev:
|
||||
stage: deploy
|
||||
script:
|
||||
- bundle exec jekyll build -d public
|
||||
- rsync -aqz public/ cotech@webarch2.co.uk:sites/dev/
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- dev
|
||||
41
.htaccess
41
.htaccess
@ -1,41 +0,0 @@
|
||||
# Serve .html files without extensions and allow directory listings
|
||||
Options +MultiViews +Indexes
|
||||
# If a SVG and a PNG exists the prefer the SVG
|
||||
AddType image/svg+xml;qs=0.9 svg sgvz
|
||||
AddType image/png;qs=0.8 png
|
||||
# Work around Apache bug from 2002
|
||||
# https://bz.apache.org/bugzilla/show_bug.cgi?id=53595
|
||||
# https://kevinlocke.name/bits/2012/07/20/serving-xhtml-with-apache-multiviews/
|
||||
Header always edit "Content-Type" ";\s*qs=[0-9]*(?:\.[0-9]+)?\s*" ""
|
||||
# Gzip these file types
|
||||
AddOutputFilter DEFLATE html
|
||||
AddOutputFilter DEFLATE svg
|
||||
AddOutputFilter DEFLATE css
|
||||
AddOutputFilter DEFLATE js
|
||||
# URL's that changed
|
||||
Redirect /coops/ https://www.cotech.coop/co-op/
|
||||
Redirect /technology/gnu-bash https://www.cotech.coop/technology/bash
|
||||
Redirect /co-op/graphics-coop https://www.cotech.coop/co-op/form-and-function
|
||||
# Canonical URLs redirect to the domain with a www
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine on
|
||||
RewriteCond %{HTTP_HOST} ^coops\.tech$
|
||||
RewriteRule ^/?(.*) https://www.cotech.coop/$1 [R,L]
|
||||
</IfModule>
|
||||
# Redirect HTTP to HTTPS
|
||||
# https://wiki.apache.org/httpd/RewriteHTTPToHTTPS
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine on
|
||||
RewriteCond %{HTTPS} !=on
|
||||
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
|
||||
</IfModule>
|
||||
# Strict Transport Security Header, this prevents clients
|
||||
# with STS support from accessing the site using HTTP
|
||||
# https://stackoverflow.com/questions/24144552/how-to-set-hsts-header-from-htaccess-only-on-https
|
||||
Header set Strict-Transport-Security "max-age=31536000" env=HTTPS
|
||||
# Directory Listings
|
||||
HeaderName /top.html
|
||||
ReadmeName /bot.html
|
||||
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=* DescriptionWidth=*
|
||||
IndexOptions Charset=UTF-8 SuppressHTMLPreamble XHTML TrackModified IconsAreLinks
|
||||
IndexOptions SuppressDescription
|
||||
@ -1 +1 @@
|
||||
3.4.4
|
||||
2.5.3
|
||||
3
Gemfile
3
Gemfile
@ -1,3 +1,6 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'jekyll'
|
||||
|
||||
# Fixes deprecation warning - see https://github.com/jekyll/jekyll-sass-converter/pull/75
|
||||
gem 'jekyll-sass-converter', git: 'https://github.com/jekyll/jekyll-sass-converter.git', branch: 'sassc'
|
||||
|
||||
178
Gemfile.lock
178
Gemfile.lock
@ -1,161 +1,69 @@
|
||||
GIT
|
||||
remote: https://github.com/jekyll/jekyll-sass-converter.git
|
||||
revision: c4d4e3e5b1a2222bb94895f9a6ab7e0216236ab8
|
||||
branch: sassc
|
||||
specs:
|
||||
jekyll-sass-converter (1.5.2)
|
||||
sassc (~> 2.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.8.7)
|
||||
public_suffix (>= 2.0.2, < 7.0)
|
||||
base64 (0.3.0)
|
||||
bigdecimal (3.2.2)
|
||||
addressable (2.5.2)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.3.5)
|
||||
csv (3.3.5)
|
||||
em-websocket (0.5.3)
|
||||
concurrent-ruby (1.1.1)
|
||||
em-websocket (0.5.1)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
eventmachine (1.2.7)
|
||||
ffi (1.17.2)
|
||||
ffi (1.17.2-aarch64-linux-gnu)
|
||||
ffi (1.17.2-aarch64-linux-musl)
|
||||
ffi (1.17.2-arm-linux-gnu)
|
||||
ffi (1.17.2-arm-linux-musl)
|
||||
ffi (1.17.2-arm64-darwin)
|
||||
ffi (1.17.2-x86-linux-gnu)
|
||||
ffi (1.17.2-x86-linux-musl)
|
||||
ffi (1.17.2-x86_64-darwin)
|
||||
ffi (1.17.2-x86_64-linux-gnu)
|
||||
ffi (1.17.2-x86_64-linux-musl)
|
||||
ffi (1.9.25)
|
||||
forwardable-extended (2.6.0)
|
||||
google-protobuf (4.31.1)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-aarch64-linux-gnu)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-aarch64-linux-musl)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-arm64-darwin)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-x86-linux-gnu)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-x86-linux-musl)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-x86_64-darwin)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-x86_64-linux-gnu)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.31.1-x86_64-linux-musl)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
http_parser.rb (0.8.0)
|
||||
i18n (1.14.7)
|
||||
http_parser.rb (0.6.0)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (4.4.1)
|
||||
jekyll (3.7.4)
|
||||
addressable (~> 2.4)
|
||||
base64 (~> 0.2)
|
||||
colorator (~> 1.0)
|
||||
csv (~> 3.0)
|
||||
em-websocket (~> 0.5)
|
||||
i18n (~> 1.0)
|
||||
jekyll-sass-converter (>= 2.0, < 4.0)
|
||||
i18n (~> 0.7)
|
||||
jekyll-sass-converter (~> 1.0)
|
||||
jekyll-watch (~> 2.0)
|
||||
json (~> 2.6)
|
||||
kramdown (~> 2.3, >= 2.3.1)
|
||||
kramdown-parser-gfm (~> 1.0)
|
||||
kramdown (~> 1.14)
|
||||
liquid (~> 4.0)
|
||||
mercenary (~> 0.3, >= 0.3.6)
|
||||
mercenary (~> 0.3.3)
|
||||
pathutil (~> 0.9)
|
||||
rouge (>= 3.0, < 5.0)
|
||||
rouge (>= 1.7, < 4)
|
||||
safe_yaml (~> 1.0)
|
||||
terminal-table (>= 1.8, < 4.0)
|
||||
webrick (~> 1.7)
|
||||
jekyll-sass-converter (3.1.0)
|
||||
sass-embedded (~> 1.75)
|
||||
jekyll-watch (2.2.1)
|
||||
jekyll-watch (2.1.2)
|
||||
listen (~> 3.0)
|
||||
json (2.12.2)
|
||||
kramdown (2.5.1)
|
||||
rexml (>= 3.3.9)
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.4)
|
||||
listen (3.9.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
mercenary (0.4.0)
|
||||
kramdown (1.17.0)
|
||||
liquid (4.0.0)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
mercenary (0.3.6)
|
||||
pathutil (0.16.2)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (6.0.2)
|
||||
rake (13.3.0)
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.11.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.4.1)
|
||||
rouge (4.5.2)
|
||||
safe_yaml (1.0.5)
|
||||
sass-embedded (1.89.2)
|
||||
google-protobuf (~> 4.31)
|
||||
rake (>= 13)
|
||||
sass-embedded (1.89.2-aarch64-linux-android)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-aarch64-linux-gnu)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-aarch64-linux-musl)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-arm-linux-androideabi)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-arm-linux-gnueabihf)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-arm-linux-musleabihf)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-arm64-darwin)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-riscv64-linux-android)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-riscv64-linux-gnu)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-riscv64-linux-musl)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-x86_64-darwin)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-x86_64-linux-android)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-x86_64-linux-gnu)
|
||||
google-protobuf (~> 4.31)
|
||||
sass-embedded (1.89.2-x86_64-linux-musl)
|
||||
google-protobuf (~> 4.31)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
unicode-display_width (2.6.0)
|
||||
webrick (1.9.1)
|
||||
public_suffix (2.0.5)
|
||||
rake (12.3.1)
|
||||
rb-fsevent (0.10.3)
|
||||
rb-inotify (0.9.10)
|
||||
ffi (>= 0.5.0, < 2)
|
||||
rouge (2.2.1)
|
||||
ruby_dep (1.5.0)
|
||||
safe_yaml (1.0.4)
|
||||
sassc (2.0.0)
|
||||
ffi (~> 1.9.6)
|
||||
rake
|
||||
|
||||
PLATFORMS
|
||||
aarch64-linux-android
|
||||
aarch64-linux-gnu
|
||||
aarch64-linux-musl
|
||||
arm-linux-androideabi
|
||||
arm-linux-gnu
|
||||
arm-linux-gnueabihf
|
||||
arm-linux-musl
|
||||
arm-linux-musleabihf
|
||||
arm64-darwin
|
||||
riscv64-linux-android
|
||||
riscv64-linux-gnu
|
||||
riscv64-linux-musl
|
||||
ruby
|
||||
x86-linux-gnu
|
||||
x86-linux-musl
|
||||
x86_64-darwin
|
||||
x86_64-linux-android
|
||||
x86_64-linux-gnu
|
||||
x86_64-linux-musl
|
||||
|
||||
DEPENDENCIES
|
||||
jekyll
|
||||
jekyll-sass-converter!
|
||||
|
||||
BUNDLED WITH
|
||||
2.6.7
|
||||
1.17.1
|
||||
|
||||
98
README.md
98
README.md
@ -1,93 +1,17 @@
|
||||
# CoTech Website
|
||||
|
||||
This repo is [hosted at git.coop](https://git.coop/cotech/website) and [push mirrored to GitHub](https://github.com/cotech/jekyll-website).
|
||||
|
||||
If you would like to contribute to this repo you have two options:
|
||||
|
||||
1. [Join Webarchitects](https://webarch.coop/join) to [create an account at git.coop](https://webarch.coop/git#free) and then request access to the [CoTech group](https://git.coop/cotech) and when that has been granted you can update this repo directly.
|
||||
2. Use a GitHub account to create a [pull request](https://github.com/cotech/jekyll-website/pulls) at GitHub and then ask someone who is a member of [Webarchitects](https://www.webarchitects.coop/) to [patch the repo for you](https://community.coops.tech/t/cotech-website-repo-mirroring-to-github/2818).
|
||||
|
||||
## Introduction
|
||||
|
||||
This is a port of the old WordPress version of the CoTech website to a statically-generated site using Jekyll. The site consists of a bunch of markdown files and images stored in git.coop. The Jekyll build process is automated so that there is no need to have Jekyll installed and running to make changes to the site.
|
||||
|
||||
* Live site: https://coops.tech/
|
||||
* Dev site: https://dev.coops.tech/
|
||||
|
||||
## Updating the site
|
||||
|
||||
It is possible to edit markdown files and upload images through the [GitLab Web IDE](https://docs.gitlab.com/ce/user/project/web_ide/). To use this, got to the [GitLab website page](https://git.coop/cotech/website) and click the Web IDE button to the left below the toolbar.
|
||||
|
||||
Each page type lives in it's own folder.
|
||||
|
||||
* _clients contains client pages
|
||||
* _coops contains coop pages
|
||||
* _services contains service pages
|
||||
* _technologies contains technology pages
|
||||
|
||||
To change a coop page, edit the relevant coop file in the _coops directory. Each file contains a metadata block at the top of the file, followed by the main text describing the coop. The metadata block contains the coop details and lists of clients, services and technologies associated with the coop.
|
||||
|
||||
If using GitLab Web IDE, make your changes to the relevant files and then commit your changes by clicking the commit button in the bottom-left corner. Add a brief description of the changes you have made as a the commit message and then click 'Stage & Commit'. It is okay to commit to the master git branch if you are simply updating your coop details, but if you are making extensive changes to many coop pages it is better to create a new branch and merge request and ask someone else to review your changes before they merge your changes in the master branch.
|
||||
|
||||
Once your changes have been committed to the master branch an automatic build of the dev site is triggered. This will take a few minutes to run and you can check the status of the build here: https://git.coop/cotech/website/pipelines. Once the build has completed you will be able to see your changes on the dev site: https://dev.coops.tech/.
|
||||
|
||||
If you're happy with they changes on the dev site, then you can deploy them to the live site. See the Deployment section below on how to do this.
|
||||
|
||||
### Adding new clients, services and technologies
|
||||
|
||||
You will need to add a new markdown file in the relevant directory for the new item. The file only needs to contain a metadata block with the details describing the new item, this is typically just a title and name (which are usually the same), but look at other items for examples.
|
||||
|
||||
Along with the new file you will also need to upload a logo or image for the new item. Images live in a sub-directory of the images directory and should be named the same as the markdown file, but with a .png extension. Images should be formatted as a PNG and optimized for the web.
|
||||
|
||||
Once the new file and image have been created then you can add the new client, service or technology as a list item in the metadata section of the relevant coop file.
|
||||
This is a port of the current Wordpress version of the [CoTech Website][] to a statically-generated site using [Jekyll][].
|
||||
|
||||
## Run the site locally
|
||||
|
||||
You can run the site on your computer as if it were live online using Jekyll. You will need `git` and `ruby` installed on your machine to do this. Then clone the repository
|
||||
|
||||
### ... using docker
|
||||
|
||||
Make sure you have [docker](https://docs.docker.com/install/) (CE is fine) installed and running,
|
||||
and [docker-compose](https://docs.docker.com/compose/install/) installed,
|
||||
then:
|
||||
|
||||
git clone git@git.coop:cotech/website.git
|
||||
cd website
|
||||
docker-compose up -d
|
||||
|
||||
And visit [localhost:4000](http://localhost:4000) to view the site.
|
||||
|
||||
There are two docker volumes used here:
|
||||
* `vendor` - caches the ruby gems even if you recreate the containers
|
||||
* `site` - holds the built site files to share them with httpd (and not clutter your local filesystem)
|
||||
|
||||
A few useful things you might want to do:
|
||||
|
||||
# check the status of the containers
|
||||
docker-compose ps
|
||||
|
||||
# stop all the containers (but don't remove them)
|
||||
docker-compose stop
|
||||
|
||||
# stop and remove the containers (but leave the volumes)
|
||||
docker-compose down
|
||||
|
||||
# remove everything
|
||||
docker-compose down -v
|
||||
|
||||
# bring it back to life from any state you happen to be in
|
||||
docker-compose up -d
|
||||
|
||||
# run some ruby/bundler commands
|
||||
docker-compose run jekyll bundle --version
|
||||
docker-compose run jekyll bundle update
|
||||
docker-compose run jekyll bundle exec jekyll --help
|
||||
|
||||
### ... directly on your machine
|
||||
|
||||
Install the dependencies for the project
|
||||
|
||||
git clone git@git.coop:cotech/website.git
|
||||
cd website
|
||||
gem install bundler
|
||||
bundle install
|
||||
@ -98,25 +22,9 @@ Run a local web server so that you can view the site
|
||||
|
||||
And visit [localhost:4000](http://localhost:4000) to view the site.
|
||||
|
||||
**Note: not all the images will load as there is no `.htaccess` support locally**
|
||||
## Deploy CI
|
||||
|
||||
## Deployment
|
||||
|
||||
### Dev/Staging
|
||||
|
||||
When changes are committed to the `master` branch the `.gitlab-ci.yml` file triggers the building of the site and then the copying of the results to [dev.coops.tech](https://dev.coops.tech).
|
||||
|
||||
### Production
|
||||
|
||||
You need to manually deploy the changes from dev to production.
|
||||
|
||||
1. View the changes on [dev.coops.tech](https://dev.coops.tech) and ensure you're happy for them to be pushed to production.
|
||||
|
||||
2. Visit [GitLab environments](https://git.coop/cotech/website/environments). __NOTE.__ If you don't have access to the environments page then post a message in the [Website category of the CoTech forum](https://community.coops.tech/c/cotech/website) to ask someone to do it for you.
|
||||
|
||||
3. Click the "Play" icon on the right of the screen in the row for the "dev" environment and choose "deploy:production".
|
||||
|
||||
4. Your changes will be visible in production when the commit listed in the "production" environment row matches the commit listed in the "dev" environment row.
|
||||
When changes are committed to the `master` branch the `.gitlab-ci.yml` file triggers the building of the site and then the copying of the results to https://static.coops.tech/ and when changes are committed to the `dev` branch the site at https://dev.static.coops.tech/ is updated.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
||||
3
_clients/360-giving.md
Normal file
3
_clients/360-giving.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: 360 Giving
|
||||
---
|
||||
3
_clients/ace-hotel.md
Normal file
3
_clients/ace-hotel.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Ace Hotel
|
||||
---
|
||||
3
_clients/act-now.md
Normal file
3
_clients/act-now.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Act Now!
|
||||
---
|
||||
3
_clients/alitura-landscape-and-garden-design.md
Normal file
3
_clients/alitura-landscape-and-garden-design.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Alitura Landscape and Garden Design
|
||||
---
|
||||
3
_clients/alzheimers.md
Normal file
3
_clients/alzheimers.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Alzheimers
|
||||
---
|
||||
3
_clients/association-for-progressive-communications.md
Normal file
3
_clients/association-for-progressive-communications.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Association for Progressive Communications
|
||||
---
|
||||
3
_clients/aston-villa-fc.md
Normal file
3
_clients/aston-villa-fc.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Aston Villa FC
|
||||
---
|
||||
3
_clients/atmoterra.md
Normal file
3
_clients/atmoterra.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Atmoterra
|
||||
---
|
||||
3
_clients/authors-licensing-and-collecting-society.md
Normal file
3
_clients/authors-licensing-and-collecting-society.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Authors’ Licensing and Collecting Society
|
||||
---
|
||||
3
_clients/badge-wiki.md
Normal file
3
_clients/badge-wiki.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Badge Wiki
|
||||
---
|
||||
3
_clients/banksy.md
Normal file
3
_clients/banksy.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Banksy
|
||||
---
|
||||
3
_clients/basildon-council.md
Normal file
3
_clients/basildon-council.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Basildon Council
|
||||
---
|
||||
3
_clients/bates-wells-braithwaite-llp.md
Normal file
3
_clients/bates-wells-braithwaite-llp.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Bates Wells Braithwaite LLP
|
||||
---
|
||||
3
_clients/bbc.md
Normal file
3
_clients/bbc.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: BBC
|
||||
---
|
||||
3
_clients/big-lottery-fund.md
Normal file
3
_clients/big-lottery-fund.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Big Lottery Fund
|
||||
---
|
||||
3
_clients/birmingham-bike-foundry.md
Normal file
3
_clients/birmingham-bike-foundry.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Birmingham Bike Foundry
|
||||
---
|
||||
3
_clients/bluqube.md
Normal file
3
_clients/bluqube.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: BluQube
|
||||
---
|
||||
3
_clients/bnp-paribas.md
Normal file
3
_clients/bnp-paribas.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: BNP Paribas
|
||||
---
|
||||
3
_clients/bond.md
Normal file
3
_clients/bond.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Bond
|
||||
---
|
||||
3
_clients/booth-centre.md
Normal file
3
_clients/booth-centre.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Booth Centre
|
||||
---
|
||||
3
_clients/brighton-hove-city-council.md
Normal file
3
_clients/brighton-hove-city-council.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Brighton & Hove City Council
|
||||
---
|
||||
3
_clients/british-museum.md
Normal file
3
_clients/british-museum.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: British Museum
|
||||
---
|
||||
3
_clients/burngreave-messenger.md
Normal file
3
_clients/burngreave-messenger.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Burngreave Messenger
|
||||
---
|
||||
3
_clients/cairn-housing-association.md
Normal file
3
_clients/cairn-housing-association.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Cairn Housing Association
|
||||
---
|
||||
3
_clients/camden-new-journal.md
Normal file
3
_clients/camden-new-journal.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Camden New Journal
|
||||
---
|
||||
3
_clients/campaign-for-press-and-broadcasting-freedom.md
Normal file
3
_clients/campaign-for-press-and-broadcasting-freedom.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Campaign for Press and Broadcasting Freedom
|
||||
---
|
||||
3
_clients/carbon-co-op.md
Normal file
3
_clients/carbon-co-op.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Carbon Co-op
|
||||
---
|
||||
3
_clients/carbon3it-ltd.md
Normal file
3
_clients/carbon3it-ltd.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Carbon3IT Ltd
|
||||
---
|
||||
3
_clients/careskills-academy.md
Normal file
3
_clients/careskills-academy.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Careskills Academy
|
||||
---
|
||||
3
_clients/cast.md
Normal file
3
_clients/cast.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: CAST
|
||||
---
|
||||
3
_clients/cds-co-operatives.md
Normal file
3
_clients/cds-co-operatives.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: CDS Co-operatives
|
||||
---
|
||||
3
_clients/ceasefire-magazine.md
Normal file
3
_clients/ceasefire-magazine.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Ceasefire Magazine
|
||||
---
|
||||
3
_clients/channel4.md
Normal file
3
_clients/channel4.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Channel4
|
||||
---
|
||||
3
_clients/chartist.md
Normal file
3
_clients/chartist.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Chartist
|
||||
---
|
||||
3
_clients/child-accident-prevention-trust.md
Normal file
3
_clients/child-accident-prevention-trust.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Child Accident Prevention Trust
|
||||
---
|
||||
3
_clients/child-poverty-action-group.md
Normal file
3
_clients/child-poverty-action-group.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Child Poverty Action Group
|
||||
---
|
||||
3
_clients/children-s-health-scotland.md
Normal file
3
_clients/children-s-health-scotland.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Children’s Health Scotland
|
||||
---
|
||||
3
_clients/christopher-kane.md
Normal file
3
_clients/christopher-kane.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Christopher Kane
|
||||
---
|
||||
3
_clients/city-of-sanctuary.md
Normal file
3
_clients/city-of-sanctuary.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: City of Sanctuary
|
||||
---
|
||||
3
_clients/city-to-sea.md
Normal file
3
_clients/city-to-sea.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: City to Sea
|
||||
---
|
||||
3
_clients/co-operative-assistance-network.md
Normal file
3
_clients/co-operative-assistance-network.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Co-operative Assistance Network
|
||||
---
|
||||
3
_clients/co-operative-press-limited.md
Normal file
3
_clients/co-operative-press-limited.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Co-operative Press Limited
|
||||
---
|
||||
3
_clients/co-operatives-london.md
Normal file
3
_clients/co-operatives-london.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Co-operatives London
|
||||
---
|
||||
3
_clients/co-operatives-uk.md
Normal file
3
_clients/co-operatives-uk.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Co-operatives UK
|
||||
---
|
||||
3
_clients/coal-action-network.md
Normal file
3
_clients/coal-action-network.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Coal Action Network
|
||||
---
|
||||
3
_clients/colombia-solidarity-campaign.md
Normal file
3
_clients/colombia-solidarity-campaign.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Colombia Solidarity Campaign
|
||||
---
|
||||
3
_clients/common-futures.md
Normal file
3
_clients/common-futures.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Common Futures
|
||||
---
|
||||
3
_clients/community-shares-scotland.md
Normal file
3
_clients/community-shares-scotland.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Community Shares Scotland
|
||||
---
|
||||
3
_clients/compassionate-revolution.md
Normal file
3
_clients/compassionate-revolution.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Compassionate Revolution
|
||||
---
|
||||
3
_clients/creating-freedom.md
Normal file
3
_clients/creating-freedom.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Creating Freedom
|
||||
---
|
||||
3
_clients/creative-commons.md
Normal file
3
_clients/creative-commons.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Creative Commons
|
||||
---
|
||||
3
_clients/crin.md
Normal file
3
_clients/crin.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: CRIN
|
||||
---
|
||||
3
_clients/crown.md
Normal file
3
_clients/crown.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Crown
|
||||
---
|
||||
3
_clients/crystal-interactive.md
Normal file
3
_clients/crystal-interactive.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Crystal Interactive
|
||||
---
|
||||
3
_clients/daily-life-ltd.md
Normal file
3
_clients/daily-life-ltd.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Daily Life Ltd.
|
||||
---
|
||||
3
_clients/data-gouv-fr.md
Normal file
3
_clients/data-gouv-fr.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: data.gouv.fr
|
||||
---
|
||||
3
_clients/department-for-international-development.md
Normal file
3
_clients/department-for-international-development.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Department for International Development
|
||||
---
|
||||
3
_clients/development-trust-northern-ireland.md
Normal file
3
_clients/development-trust-northern-ireland.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Development Trust Northern Ireland
|
||||
---
|
||||
3
_clients/disability-snowsports-uk.md
Normal file
3
_clients/disability-snowsports-uk.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Disability Snowsports UK
|
||||
---
|
||||
3
_clients/doteveryone.md
Normal file
3
_clients/doteveryone.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Doteveryone
|
||||
---
|
||||
3
_clients/dublin-food-co-op.md
Normal file
3
_clients/dublin-food-co-op.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Dublin Food Co-op
|
||||
---
|
||||
3
_clients/e-immigrate.md
Normal file
3
_clients/e-immigrate.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: E-immigrate
|
||||
---
|
||||
3
_clients/earth-first.md
Normal file
3
_clients/earth-first.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Earth First!
|
||||
---
|
||||
3
_clients/east-end-trades-guild.md
Normal file
3
_clients/east-end-trades-guild.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: East End Trades Guild
|
||||
---
|
||||
3
_clients/economy-for-the-common-good.md
Normal file
3
_clients/economy-for-the-common-good.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Economy for the Common Good
|
||||
---
|
||||
3
_clients/eisf.md
Normal file
3
_clients/eisf.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: eisf
|
||||
---
|
||||
3
_clients/elli.md
Normal file
3
_clients/elli.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Elli
|
||||
---
|
||||
3
_clients/emergent-works.md
Normal file
3
_clients/emergent-works.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Emergent Works
|
||||
---
|
||||
3
_clients/enrol-yourself.md
Normal file
3
_clients/enrol-yourself.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Enrol Yourself
|
||||
---
|
||||
3
_clients/essex-county-council.md
Normal file
3
_clients/essex-county-council.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Essex County Council
|
||||
---
|
||||
3
_clients/essex-cultural-diversity-project.md
Normal file
3
_clients/essex-cultural-diversity-project.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Essex Cultural Diversity Project
|
||||
---
|
||||
3
_clients/european-services-strategy-unit.md
Normal file
3
_clients/european-services-strategy-unit.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: European Services Strategy Unit
|
||||
---
|
||||
3
_clients/european-union.md
Normal file
3
_clients/european-union.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: European Union
|
||||
---
|
||||
3
_clients/everyone-everyday.md
Normal file
3
_clients/everyone-everyday.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Everyone Everyday
|
||||
---
|
||||
3
_clients/fanfinders.md
Normal file
3
_clients/fanfinders.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FanFinders
|
||||
---
|
||||
3
_clients/favor.md
Normal file
3
_clients/favor.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FAVOR
|
||||
---
|
||||
3
_clients/fca.md
Normal file
3
_clients/fca.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FCA
|
||||
---
|
||||
3
_clients/feilden-clegg-bradley-studios.md
Normal file
3
_clients/feilden-clegg-bradley-studios.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Feilden Clegg Bradley Studios
|
||||
---
|
||||
3
_clients/firstsite.md
Normal file
3
_clients/firstsite.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FirstSite
|
||||
---
|
||||
3
_clients/fmc.md
Normal file
3
_clients/fmc.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FMC
|
||||
---
|
||||
3
_clients/forest-recycling-project.md
Normal file
3
_clients/forest-recycling-project.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Forest Recycling Project
|
||||
---
|
||||
3
_clients/frack-off.md
Normal file
3
_clients/frack-off.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Frack Off
|
||||
---
|
||||
3
_clients/friends-of-the-earth.md
Normal file
3
_clients/friends-of-the-earth.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Friends of the Earth
|
||||
---
|
||||
3
_clients/futurelearn.md
Normal file
3
_clients/futurelearn.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: FutureLearn
|
||||
---
|
||||
3
_clients/gender-action-for-peace-and-security.md
Normal file
3
_clients/gender-action-for-peace-and-security.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Gender Action for Peace and Security
|
||||
---
|
||||
3
_clients/girl-guiding.md
Normal file
3
_clients/girl-guiding.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Girl Guiding
|
||||
---
|
||||
3
_clients/givepenny.md
Normal file
3
_clients/givepenny.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: GivePenny
|
||||
---
|
||||
3
_clients/global-canopy-programme.md
Normal file
3
_clients/global-canopy-programme.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Global Canopy Programme
|
||||
---
|
||||
3
_clients/global-ehealth-foundation.md
Normal file
3
_clients/global-ehealth-foundation.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Global eHealth Foundation
|
||||
---
|
||||
3
_clients/global-witness.md
Normal file
3
_clients/global-witness.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Global Witness
|
||||
---
|
||||
3
_clients/goethe-institut.md
Normal file
3
_clients/goethe-institut.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Goethe Institut
|
||||
---
|
||||
3
_clients/government-digital-service.md
Normal file
3
_clients/government-digital-service.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Government Digital Service
|
||||
---
|
||||
3
_clients/green-bike-project.md
Normal file
3
_clients/green-bike-project.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
title: Green Bike Project
|
||||
---
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user