├── web ├── app │ ├── themes │ │ ├── .gitkeep │ │ └── coop-tech-oowp-theme │ │ │ ├── src │ │ │ └── .gitkeep │ │ │ ├── .gitignore │ │ │ ├── views │ │ │ ├── defaultPost.php │ │ │ ├── 404.php │ │ │ ├── people.php │ │ │ ├── about.php │ │ │ ├── manifesto.php │ │ │ └── constitution.php │ │ │ ├── assets │ │ │ ├── img │ │ │ │ ├── banner-bg.jpg │ │ │ │ ├── coop-logo.png │ │ │ │ ├── icon-coops.png │ │ │ │ ├── icon-staff.png │ │ │ │ ├── CoTech-logo.png │ │ │ │ ├── client-thumb.png │ │ │ │ ├── icon-clients.png │ │ │ │ ├── icon-revenue.png │ │ │ │ ├── service-thumb.png │ │ │ │ ├── banner-collage.jpg │ │ │ │ ├── services-WebDesign.png │ │ │ │ ├── services-Consultancy.png │ │ │ │ ├── services-Development.png │ │ │ │ ├── services-GraphicDesign.png │ │ │ │ ├── services-Illustration.png │ │ │ │ ├── services-MotionGraphics.png │ │ │ │ ├── services-UserResearch.png │ │ │ │ ├── services-HighEndPrinting.png │ │ │ │ ├── services-SEOOptimisation.png │ │ │ │ ├── services-BrandingAndIdentity.png │ │ │ │ ├── services-DatabaseSolutions.png │ │ │ │ └── services-MarketingConsultancy.png │ │ │ └── fonts │ │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ │ ├── OpenSans-Bold-webfont.ttf │ │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ │ └── OpenSans-Regular-webfont.woff │ │ │ ├── style.css │ │ │ ├── index.php │ │ │ ├── classes │ │ │ ├── ouPost.class.php │ │ │ ├── ouFakePost.class.php │ │ │ ├── ouPage.class.php │ │ │ └── ouClient.class.php │ │ │ ├── inc │ │ │ └── acf │ │ │ │ ├── loader.php │ │ │ │ ├── no_content_on_homepage.php │ │ │ │ ├── service.php │ │ │ │ └── technology.php │ │ │ ├── composer.json │ │ │ ├── package.json │ │ │ ├── README.md │ │ │ └── functions.php │ ├── plugins │ │ └── .gitkeep │ ├── uploads │ │ └── .gitkeep │ ├── languages │ │ └── .gitignore │ └── mu-plugins │ │ ├── register-theme-directory.php │ │ └── disallow-indexing.php ├── flats │ ├── js │ │ └── app.js │ ├── .DS_Store │ ├── img │ │ ├── Cbn.png │ │ ├── Mc3.png │ │ ├── .DS_Store │ │ ├── AltGen.png │ │ ├── B9Lab.png │ │ ├── Wave.png │ │ ├── Calverts.png │ │ ├── SeaStep.png │ │ ├── BlakeHouse.png │ │ ├── CoTech-logo.png │ │ ├── Consultancy.png │ │ ├── Development.png │ │ ├── Fairmondo.png │ │ ├── GoFreeRange.png │ │ ├── MediaCoop.png │ │ ├── NetherRealm.png │ │ ├── Outlandish.png │ │ ├── TableFlip.png │ │ ├── TheSmallAxe.png │ │ ├── WeAreOpen.png │ │ ├── WebDesign.png │ │ ├── banner-bg.jpg │ │ ├── coop-logo.png │ │ ├── coops-icon.png │ │ ├── staff-icon.png │ │ ├── GlowboxDesign.png │ │ ├── GraphicDesign.png │ │ ├── HackneyRoutes.png │ │ ├── Illustration.png │ │ ├── OpenEcommerce.png │ │ ├── PrincipleSix.png │ │ ├── SoftwareCoop.png │ │ ├── UserResearch.png │ │ ├── WebArchitects.png │ │ ├── client-thumb.png │ │ ├── clients-icon.png │ │ ├── revenue-icon.png │ │ ├── service-thumb.png │ │ ├── AgileCollective.png │ │ ├── CooperativeWeb.png │ │ ├── FearlessFutures.png │ │ ├── GildedSplinters.png │ │ ├── HighandPrinting.png │ │ ├── MotionGraphics.png │ │ ├── SEOOptimisation.png │ │ ├── SeedsForChange.png │ │ ├── ChapelStreetStudio.png │ │ ├── DatabaseSolutions.png │ │ ├── FoundersAndCoders.png │ │ ├── NewForestAdvisory.png │ │ ├── TheGreatInitiative.png │ │ ├── BrandingandIdentity.png │ │ ├── MarketingConsultancy.png │ │ └── BrightonDigitalExchange.png │ ├── fonts │ │ ├── .DS_Store │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.ttf │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.ttf │ │ └── OpenSans-Regular-webfont.woff │ └── foundation-icons │ │ ├── .DS_Store │ │ ├── foundation-icons.eot │ │ ├── foundation-icons.ttf │ │ ├── foundation-icons.woff │ │ └── svgs │ │ ├── fi-social-delicious.svg │ │ ├── fi-minus.svg │ │ ├── fi-video.svg │ │ ├── fi-social-adobe.svg │ │ ├── fi-contrast.svg │ │ ├── fi-braille.svg │ │ ├── fi-social-drive.svg │ │ ├── fi-home.svg │ │ ├── fi-shield.svg │ │ ├── fi-social-windows.svg │ │ ├── fi-comment.svg │ │ ├── fi-folder.svg │ │ ├── fi-page.svg │ │ ├── fi-social-hacker-news.svg │ │ ├── fi-play.svg │ │ ├── fi-social-forrst.svg │ │ ├── fi-record.svg │ │ ├── fi-cloud.svg │ │ ├── fi-die-one.svg │ │ ├── fi-pencil.svg │ │ ├── fi-battery-empty.svg │ │ ├── fi-italic.svg │ │ ├── fi-social-facebook.svg │ │ ├── fi-bookmark.svg │ │ ├── fi-mobile.svg │ │ ├── fi-shopping-bag.svg │ │ ├── fi-stop.svg │ │ ├── fi-heart.svg │ │ ├── fi-play-video.svg │ │ ├── fi-arrow-down.svg │ │ ├── fi-arrow-left.svg │ │ ├── fi-arrow-right.svg │ │ ├── fi-arrow-up.svg │ │ ├── fi-css3.svg │ │ ├── fi-music.svg │ │ ├── fi-check.svg │ │ ├── fi-social-flickr.svg │ │ ├── fi-html5.svg │ │ ├── fi-monitor.svg │ │ ├── fi-battery-full.svg │ │ ├── fi-prohibited.svg │ │ ├── fi-battery-half.svg │ │ ├── fi-volume-none.svg │ │ ├── fi-social-dropbox.svg │ │ ├── fi-social-path.svg │ │ ├── fi-bold.svg │ │ ├── fi-lock.svg │ │ ├── fi-rewind.svg │ │ ├── fi-unlock.svg │ │ ├── fi-credit-card.svg │ │ ├── fi-fast-forward.svg │ │ ├── fi-background-color.svg │ │ ├── fi-info.svg │ │ ├── fi-mountains.svg │ │ ├── fi-page-filled.svg │ │ ├── fi-tablet-landscape.svg │ │ ├── fi-tablet-portrait.svg │ │ ├── fi-star.svg │ │ ├── fi-magnifying-glass.svg │ │ ├── fi-torso.svg │ │ ├── fi-trash.svg │ │ ├── fi-plus.svg │ │ ├── fi-comment-video.svg │ │ ├── fi-filter.svg │ │ ├── fi-marker.svg │ │ ├── fi-social-medium.svg │ │ ├── fi-social-orkut.svg │ │ ├── fi-die-two.svg │ │ ├── fi-minus-circle.svg │ │ ├── fi-page-copy.svg │ │ ├── fi-camera.svg │ │ ├── fi-print.svg │ │ ├── fi-x.svg │ │ ├── fi-flag.svg │ │ ├── fi-social-rdio.svg │ │ ├── fi-usb.svg │ │ ├── fi-social-linkedin.svg │ │ ├── fi-layout.svg │ │ ├── fi-social-zurb.svg │ │ ├── fi-foot.svg │ │ ├── fi-share.svg │ │ ├── fi-page-multiple.svg │ │ ├── fi-social-bing.svg │ │ ├── fi-safety-cone.svg │ │ ├── fi-underline.svg │ │ ├── fi-comments.svg │ │ ├── fi-projection-screen.svg │ │ ├── fi-comment-minus.svg │ │ ├── fi-eye.svg │ │ ├── fi-target.svg │ │ ├── fi-social-tumblr.svg │ │ ├── fi-annotate.svg │ │ ├── fi-compass.svg │ │ ├── fi-graph-horizontal.svg │ │ ├── fi-play-circle.svg │ │ ├── fi-crop.svg │ │ ├── fi-photo.svg │ │ ├── fi-refresh.svg │ │ ├── fi-die-three.svg │ │ ├── fi-eject.svg │ │ ├── fi-upload.svg │ │ ├── fi-download.svg │ │ ├── fi-laptop.svg │ │ ├── fi-male-symbol.svg │ │ ├── fi-telephone.svg │ │ ├── fi-list-bullet.svg │ │ ├── fi-social-apple.svg │ │ ├── fi-zoom-out.svg │ │ ├── fi-graph-pie.svg │ │ ├── fi-clock.svg │ │ ├── fi-social-twitter.svg │ │ ├── fi-social-xbox.svg │ │ ├── fi-page-remove.svg │ │ ├── fi-pause.svg │ │ ├── fi-previous.svg │ │ ├── fi-align-justify.svg │ │ ├── fi-shopping-cart.svg │ │ ├── fi-next.svg │ │ ├── fi-text-color.svg │ │ ├── fi-folder-lock.svg │ │ ├── fi-paw.svg │ │ ├── fi-price-tag.svg │ │ ├── fi-social-lastfm.svg │ │ ├── fi-address-book.svg │ │ ├── fi-checkbox.svg │ │ ├── fi-torso-female.svg │ │ ├── fi-web.svg │ │ ├── fi-folder-add.svg │ │ ├── fi-upload-cloud.svg │ │ ├── fi-align-center.svg │ │ ├── fi-align-left.svg │ │ ├── fi-list.svg │ │ ├── fi-die-four.svg │ │ ├── fi-graph-bar.svg │ │ ├── fi-align-right.svg │ │ └── fi-microphone.svg ├── index.php ├── wp-config.php ├── server.php └── manifesto.include.html ├── wp-cli.yml ├── .gitattributes ├── config └── environments │ ├── development.php │ ├── staging.php │ └── production.php ├── git-hooks ├── post-merge └── pre-commit ├── docker ├── assets │ ├── Dockerfile │ └── download-images.sh └── wordpress │ └── Dockerfile ├── .gitignore └── .env.example /web/app/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | path: web/wp 2 | -------------------------------------------------------------------------------- /web/app/languages/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/flats/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation() 2 | -------------------------------------------------------------------------------- /web/flats/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/.DS_Store -------------------------------------------------------------------------------- /web/flats/img/Cbn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Cbn.png -------------------------------------------------------------------------------- /web/flats/img/Mc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Mc3.png -------------------------------------------------------------------------------- /web/flats/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/.DS_Store -------------------------------------------------------------------------------- /web/flats/img/AltGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/AltGen.png -------------------------------------------------------------------------------- /web/flats/img/B9Lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/B9Lab.png -------------------------------------------------------------------------------- /web/flats/img/Wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Wave.png -------------------------------------------------------------------------------- /web/flats/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/.DS_Store -------------------------------------------------------------------------------- /web/flats/img/Calverts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Calverts.png -------------------------------------------------------------------------------- /web/flats/img/SeaStep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/SeaStep.png -------------------------------------------------------------------------------- /web/flats/img/BlakeHouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/BlakeHouse.png -------------------------------------------------------------------------------- /web/flats/img/CoTech-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/CoTech-logo.png -------------------------------------------------------------------------------- /web/flats/img/Consultancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Consultancy.png -------------------------------------------------------------------------------- /web/flats/img/Development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Development.png -------------------------------------------------------------------------------- /web/flats/img/Fairmondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Fairmondo.png -------------------------------------------------------------------------------- /web/flats/img/GoFreeRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/GoFreeRange.png -------------------------------------------------------------------------------- /web/flats/img/MediaCoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/MediaCoop.png -------------------------------------------------------------------------------- /web/flats/img/NetherRealm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/NetherRealm.png -------------------------------------------------------------------------------- /web/flats/img/Outlandish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Outlandish.png -------------------------------------------------------------------------------- /web/flats/img/TableFlip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/TableFlip.png -------------------------------------------------------------------------------- /web/flats/img/TheSmallAxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/TheSmallAxe.png -------------------------------------------------------------------------------- /web/flats/img/WeAreOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/WeAreOpen.png -------------------------------------------------------------------------------- /web/flats/img/WebDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/WebDesign.png -------------------------------------------------------------------------------- /web/flats/img/banner-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/banner-bg.jpg -------------------------------------------------------------------------------- /web/flats/img/coop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/coop-logo.png -------------------------------------------------------------------------------- /web/flats/img/coops-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/coops-icon.png -------------------------------------------------------------------------------- /web/flats/img/staff-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/staff-icon.png -------------------------------------------------------------------------------- /web/flats/img/GlowboxDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/GlowboxDesign.png -------------------------------------------------------------------------------- /web/flats/img/GraphicDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/GraphicDesign.png -------------------------------------------------------------------------------- /web/flats/img/HackneyRoutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/HackneyRoutes.png -------------------------------------------------------------------------------- /web/flats/img/Illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/Illustration.png -------------------------------------------------------------------------------- /web/flats/img/OpenEcommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/OpenEcommerce.png -------------------------------------------------------------------------------- /web/flats/img/PrincipleSix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/PrincipleSix.png -------------------------------------------------------------------------------- /web/flats/img/SoftwareCoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/SoftwareCoop.png -------------------------------------------------------------------------------- /web/flats/img/UserResearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/UserResearch.png -------------------------------------------------------------------------------- /web/flats/img/WebArchitects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/WebArchitects.png -------------------------------------------------------------------------------- /web/flats/img/client-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/client-thumb.png -------------------------------------------------------------------------------- /web/flats/img/clients-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/clients-icon.png -------------------------------------------------------------------------------- /web/flats/img/revenue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/revenue-icon.png -------------------------------------------------------------------------------- /web/flats/img/service-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/service-thumb.png -------------------------------------------------------------------------------- /web/flats/img/AgileCollective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/AgileCollective.png -------------------------------------------------------------------------------- /web/flats/img/CooperativeWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/CooperativeWeb.png -------------------------------------------------------------------------------- /web/flats/img/FearlessFutures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/FearlessFutures.png -------------------------------------------------------------------------------- /web/flats/img/GildedSplinters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/GildedSplinters.png -------------------------------------------------------------------------------- /web/flats/img/HighandPrinting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/HighandPrinting.png -------------------------------------------------------------------------------- /web/flats/img/MotionGraphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/MotionGraphics.png -------------------------------------------------------------------------------- /web/flats/img/SEOOptimisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/SEOOptimisation.png -------------------------------------------------------------------------------- /web/flats/img/SeedsForChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/SeedsForChange.png -------------------------------------------------------------------------------- /web/flats/foundation-icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/foundation-icons/.DS_Store -------------------------------------------------------------------------------- /web/flats/img/ChapelStreetStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/ChapelStreetStudio.png -------------------------------------------------------------------------------- /web/flats/img/DatabaseSolutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/DatabaseSolutions.png -------------------------------------------------------------------------------- /web/flats/img/FoundersAndCoders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/FoundersAndCoders.png -------------------------------------------------------------------------------- /web/flats/img/NewForestAdvisory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/NewForestAdvisory.png -------------------------------------------------------------------------------- /web/flats/img/TheGreatInitiative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/TheGreatInitiative.png -------------------------------------------------------------------------------- /web/flats/img/BrandingandIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/BrandingandIdentity.png -------------------------------------------------------------------------------- /web/flats/img/MarketingConsultancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/MarketingConsultancy.png -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /web/flats/img/BrightonDigitalExchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/img/BrightonDigitalExchange.png -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /web/flats/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /web/flats/foundation-icons/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/foundation-icons/foundation-icons.eot -------------------------------------------------------------------------------- /web/flats/foundation-icons/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/foundation-icons/foundation-icons.ttf -------------------------------------------------------------------------------- /web/flats/foundation-icons/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/flats/foundation-icons/foundation-icons.woff -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- 1 | Missing plugin 2 |
Please install and enable the Routemaster plugin.
-------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-GraphicDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-GraphicDesign.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-Illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-Illustration.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-MotionGraphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-MotionGraphics.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-UserResearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-UserResearch.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-HighEndPrinting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-HighEndPrinting.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-SEOOptimisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-SEOOptimisation.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-BrandingAndIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-BrandingAndIdentity.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-DatabaseSolutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-DatabaseSolutions.png -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/assets/img/services-MarketingConsultancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotech/website/HEAD/web/app/themes/coop-tech-oowp-theme/assets/img/services-MarketingConsultancy.png -------------------------------------------------------------------------------- /config/environments/staging.php: -------------------------------------------------------------------------------- 1 | post ?> 2 | 3 |We believe in a fairer world in which wealth and resources are distributed to the people who need them rather than those best able to take them.
2 |As Co-operative Technologists we aim to ensure that technology plays its part in creating a fairer world.
3 |Our individual worker co-operatives have shown that workers who collectively own their companies and control their destinies make better workplaces, better suppliers and better digital products.
4 |We call upon tech workers who share our vision to join us.
5 |We call upon consumers of digital products – including trades unions, charities, governments and private companies – to reject the false assumption that only multinational conglomerates or private equity-funded startups can be great tech companies. Technology is the lifeblood of all our futures, not just a gravy train for the fortunate few.
6 |We hereby give notice to technology companies that do not treat their employees fairly, do not give their workers control of their businesses and do not seek to create a fairer world that your days are numbered. We are more creative, more committed and more resilient. Join us.
-------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-comments.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /docker/wordpress/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.1.12 2 | 3 | COPY . /app 4 | 5 | # install package dependencies 6 | # git/subversion/unzip are used whilst install composer dependencies 7 | # mysql client is used inside the setup script 8 | #-------------------------------------- 9 | 10 | RUN apt-get update && apt-get install -y \ 11 | git \ 12 | subversion \ 13 | unzip \ 14 | mysql-client 15 | 16 | # install composer 17 | #-------------------------------------- 18 | 19 | RUN curl -sS https://getcomposer.org/installer | \ 20 | php -- --install-dir=/usr/local/bin --filename=composer 21 | 22 | # install wp cli 23 | #-------------------------------------- 24 | 25 | RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \ 26 | chmod +x wp-cli.phar && \ 27 | mv wp-cli.phar /usr/local/bin/wp 28 | 29 | # install php extensions 30 | #-------------------------------------- 31 | 32 | RUN docker-php-ext-install \ 33 | pdo \ 34 | pdo_mysql \ 35 | mysqli 36 | 37 | # add extra files to container 38 | #-------------------------------------- 39 | 40 | COPY setup-and-run.sh /setup-and-run.sh 41 | COPY php.ini /usr/local/etc/php/php.ini 42 | 43 | WORKDIR /app 44 | 45 | CMD ["/setup-and-run.sh"] 46 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-projection-screen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-tumblr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-annotate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-compass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-play-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-crop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-photo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/functions.php: -------------------------------------------------------------------------------- 1 | setup(); 13 | // store the router in the theme, once it is initialised 14 | add_action('oowp_theme_init', function ($theme) use ($router) { 15 | $theme->router = $router; 16 | }); 17 | } 18 | 19 | /** 20 | * Put your WordPress functions here 21 | */ 22 | function my_acf_google_map_api($api) { 23 | if (GOOGLE_MAPS_API_KEY) { 24 | $api['key'] = GOOGLE_MAPS_API_KEY; 25 | } 26 | return $api; 27 | } 28 | 29 | add_filter('acf/fields/google_map/api', 'my_acf_google_map_api'); 30 | 31 | add_action('wp_enqueue_scripts', function() { 32 | wp_enqueue_script('vendor', get_stylesheet_directory_uri() . '/public/js/vendor.js', [], false, false); //TODO in_footer = true? 33 | wp_enqueue_script('app', get_stylesheet_directory_uri() . '/public/js/app.js', ['vendor'], false, true); 34 | wp_enqueue_style('app', get_stylesheet_directory_uri() . '/public/css/app.css'); 35 | }); 36 | 37 | add_theme_support('post-thumbnails'); 38 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-die-three.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-eject.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-laptop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-male-symbol.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-telephone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-list-bullet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-apple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-pie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-xbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page-remove.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/inc/acf/service.php: -------------------------------------------------------------------------------- 1 | 'acf_service', 9 | 'title' => 'Service', 10 | 'fields' => array ( 11 | array ( 12 | 'key' => 'field_583ebc5b6443e', 13 | 'label' => 'Icon', 14 | 'name' => Fields::FEATURED_IMAGE, 15 | 'type' => 'image', 16 | 'save_format' => 'object', 17 | 'preview_size' => 'thumbnail', 18 | 'library' => 'all', 19 | 'required' => 'true', 20 | ), 21 | ), 22 | 'location' => array ( 23 | array ( 24 | array ( 25 | 'param' => 'post_type', 26 | 'operator' => '==', 27 | 'value' => ouService::postType(), 28 | 'order_no' => 0, 29 | 'group_no' => 0, 30 | ), 31 | ), 32 | ), 33 | 'options' => array ( 34 | 'position' => 'normal', 35 | 'layout' => 'no_box', 36 | 'hide_on_screen' => array ( 37 | 0 => 'the_content' 38 | ), 39 | ), 40 | 'menu_order' => 0, 41 | )); 42 | } 43 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-shopping-cart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/inc/acf/technology.php: -------------------------------------------------------------------------------- 1 | 'acf_technology', 9 | 'title' => 'Technology', 10 | 'fields' => array ( 11 | array ( 12 | 'key' => 'field_583ecc9f17ad7', 13 | 'label' => 'Logo', 14 | 'name' => Fields::FEATURED_IMAGE, 15 | 'type' => 'image', 16 | 'save_format' => 'object', 17 | 'preview_size' => 'thumbnail', 18 | 'library' => 'all', 19 | 'required' => 'true', 20 | ), 21 | ), 22 | 'location' => array ( 23 | array ( 24 | array ( 25 | 'param' => 'post_type', 26 | 'operator' => '==', 27 | 'value' => ouTechnology::postType(), 28 | 'order_no' => 0, 29 | 'group_no' => 0, 30 | ), 31 | ), 32 | ), 33 | 'options' => array ( 34 | 'position' => 'normal', 35 | 'layout' => 'no_box', 36 | 'hide_on_screen' => array ( 37 | 0 => 'the_content' 38 | ), 39 | ), 40 | 'menu_order' => 0, 41 | )); 42 | } 43 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-text-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-folder-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-paw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-price-tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-lastfm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-address-book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-checkbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-torso-female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/classes/ouClient.class.php: -------------------------------------------------------------------------------- 1 | 'title', 10 | 'order' => 'asc' 11 | ); 12 | 13 | $queryArgs = wp_parse_args($queryArgs, $defaults); 14 | 15 | return parent::fetchAll($queryArgs); 16 | } 17 | 18 | /** 19 | * @return string 20 | */ 21 | public function name() { 22 | return $this->title(); 23 | } 24 | 25 | /** 26 | * @param string $size 27 | * @param array $attrs 28 | * @return string 29 | */ 30 | public function logoThumbnail($size = 'thumbnail', $attrs = array()) { 31 | return $this->featuredImage($size, $attrs); 32 | } 33 | 34 | /** 35 | * @param string $size 36 | * @param array $attrs 37 | * @return string 38 | */ 39 | public function logoUrl($size = 'full', $attrs = array()) { 40 | if (!$this->logoThumbnail($size, $attrs)) { 41 | return 'http://placehold.it/300x200'; 42 | } 43 | 44 | return $this->featuredImageUrl($size); 45 | } 46 | 47 | /** 48 | * @return string 49 | */ 50 | public function websiteUrl() { 51 | return $this->metadata(Fields::WEBSITE_URL); 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-web.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-folder-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-upload-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-die-four.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 25 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-microphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | --------------------------------------------------------------------------------