├── 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 |
4 | 5 |
6 |
7 |
8 |

404

9 |

This page does not exist

10 |
11 |
12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /git-hooks/post-merge: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "==> running post-merge" 4 | 5 | git rev-parse HEAD > commit.txt 6 | composer update 7 | cd ./web/app/themes/coop-tech-oowp-theme 8 | composer install 9 | npm install 10 | gulp 11 | ./node_modules/gulp/bin/gulp.js # in case gulp not in $PATH 12 | 13 | git fetch && git log ORIG_HEAD..origin/master --pretty=format:"%s - %ar by %an (%h)" 14 | 15 | echo "==> post-merge complete" 16 | -------------------------------------------------------------------------------- /web/app/mu-plugins/register-theme-directory.php: -------------------------------------------------------------------------------- 1 | true, 12 | "show_in_rest" => true 13 | ]; 14 | return array_merge($defaults, $args); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/views/people.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | 6 |

People

7 |
8 |
9 |
10 |
11 | post->printPartial('peopleTable', ['people' => $this->people]); ?> 12 | 13 |
14 |
15 |
-------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/inc/acf/loader.php: -------------------------------------------------------------------------------- 1 | post ?> 2 | 3 |
4 | 5 |
6 |
7 |
8 |

About CoTech

9 |
10 |
11 |
12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 | 21 |
22 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/views/manifesto.php: -------------------------------------------------------------------------------- 1 | post ?> 2 | 3 |
4 | 5 |
6 |
7 |
8 |

Our Manifesto

9 |
10 |
11 |
12 | 13 |
14 |
15 | 16 |
17 | 18 |
19 |
20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/views/constitution.php: -------------------------------------------------------------------------------- 1 | post ?> 2 | 3 |
4 | 5 |
6 |
7 |
8 |

Our Constitution

9 |
10 |
11 |
12 | 13 |
14 |
15 | 16 |
17 | 18 |
19 |
20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-delicious.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Application 2 | web/app/plugins/* 3 | !web/app/plugins/.gitkeep 4 | web/app/mu-plugins/*/ 5 | web/app/upgrade 6 | web/app/uploads/* 7 | !web/app/uploads/.gitkeep 8 | 9 | # WordPress 10 | web/wp 11 | web/.htaccess 12 | 13 | # WP-CLI 14 | db-sync 15 | sql-dump-*.sql 16 | 17 | # Dotenv 18 | .env 19 | .env.* 20 | !.env.example 21 | 22 | # Vendor (e.g. Composer) 23 | vendor/ 24 | !vendor/.gitkeep 25 | 26 | # Editors 27 | /.idea 28 | 29 | # Git commit id 30 | commit.txt 31 | gitcommit.txt 32 | 33 | \.DS_Store 34 | .gitignore 35 | 36 | # Ansible provisioned 37 | web/favicon.ico 38 | 39 | # Generated via crontab 40 | web/cotech-images.tgz 41 | 42 | 43 | #NPM 44 | node_modules -------------------------------------------------------------------------------- /git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "pre-commit" 3 | set -e 4 | 5 | 6 | #=== 'prev-commit' solution by o_O Tync 7 | #commit_hash=$(git rev-parse --verify HEAD) 8 | commit=$(git log -1 --pretty="%H%n%ci") # hash \n date 9 | commit_hash=$(echo "$commit" | head -1) 10 | commit_date=$(echo "$commit" | head -2 | tail -1) # 2010-12-28 05:16:23 +0300 11 | 12 | branch_name=$(git symbolic-ref -q HEAD) # http://stackoverflow.com/questions/1593051/#1593487 13 | branch_name=${branch_name##refs/heads/} 14 | branch_name=${branch_name:-HEAD} # 'HEAD' indicates detached HEAD situation 15 | 16 | # Write it 17 | echo -e "prev_commit='$commit_hash'\ndate='$commit_date'\nbranch='$branch'\n" > ./web/gitcommit.txt -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /web/server.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | DB_NAME=database_name 2 | DB_USER=database_user 3 | DB_PASSWORD=database_password 4 | DB_HOST=database_host 5 | 6 | WP_ENV=development 7 | WP_HOME=http://example.com 8 | WP_SITEURL=${WP_HOME}/wp 9 | 10 | # Generate your keys here: https://roots.io/salts.html 11 | AUTH_KEY='generateme' 12 | SECURE_AUTH_KEY='generateme' 13 | LOGGED_IN_KEY='generateme' 14 | NONCE_KEY='generateme' 15 | AUTH_SALT='generateme' 16 | SECURE_AUTH_SALT='generateme' 17 | LOGGED_IN_SALT='generateme' 18 | NONCE_SALT='generateme' 19 | 20 | # ACF Google Maps API key: https://developers.google.com/maps/documentation/javascript/get-api-key 21 | google_maps_api_key="generateme" 22 | 23 | # Mapbox API requires an access token: https://www.mapbox.com 24 | mapbox_api_access_token="generateme" 25 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-braille.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-drive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "outlandish-starter-theme", 3 | "private": true, 4 | "version": "1.0.0", 5 | "description": "The Outlandish Starter Theme", 6 | "main": "index.js", 7 | "scripts": { 8 | "build": "gulp", 9 | "watch": "gulp watch", 10 | "build:production": "gulp --production" 11 | }, 12 | "author": "Matthew Kendon ", 13 | "license": "ISC", 14 | "dependencies": { 15 | "datatables.net": "1.10.16", 16 | "datatables.net-zf": "1.10.16", 17 | "font-awesome": "4.7.0", 18 | "foundation-icons": "^1.0.1", 19 | "foundation-sites": "6.2.4", 20 | "jquery": "^3.1.1", 21 | "laravel-elixir": "6.0.0-13", 22 | "leaflet": "^1.0.2", 23 | "node-sass": "^4.5.3", 24 | "what-input": "^4.0.3" 25 | }, 26 | "devDependencies": { 27 | "gulp": "^3.9.1" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-hacker-news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-forrst.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/inc/acf/no_content_on_homepage.php: -------------------------------------------------------------------------------- 1 | 'acf_homepage-content', 6 | 'title' => 'Homepage Content', 7 | 'fields' => array ( 8 | ), 9 | 'location' => array ( 10 | array ( 11 | array ( 12 | 'param' => 'page', 13 | 'operator' => '==', 14 | 'value' => '72', 15 | 'order_no' => 0, 16 | 'group_no' => 0, 17 | ), 18 | ), 19 | ), 20 | 'options' => array ( 21 | 'position' => 'normal', 22 | 'layout' => 'no_box', 23 | 'hide_on_screen' => array ( 24 | 0 => 'the_content', 25 | ), 26 | ), 27 | 'menu_order' => 0, 28 | )); 29 | } 30 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/README.md: -------------------------------------------------------------------------------- 1 | # Outlandish Starter Theme 2 | 3 | This theme comes with everything you need to get an Outlandish WordPress Oowp project working out of the box. 4 | 5 | ## Features 6 | 7 | This Outlandish Starter theme comes with the following features: 8 | * A classes folder for your Oowp Post classes, as well as a starting ouPost 9 | * Laravel Elixir configured for a WordPress install to make using Gulp super easy 10 | * Structure in place to include ACF definitions in your theme, rather than leaving them in your database 11 | * Foundation 6 and Font Awesome 4.7, with an app.scss that imports both 12 | 13 | ## Install 14 | 15 | Download a copy of this theme from GitHub and unzip it into the themes folder of your project. 16 | 17 | ## Making it your own 18 | 19 | To make this theme your own, you will want to edit the style.css in the base of theme to show the name of the theme that you want to use. 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-css3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-html5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-volume-none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-path.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-bold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/classes/ouFakePost.class.php: -------------------------------------------------------------------------------- 1 | 0, 9 | 'post_parent' => 0, 10 | 'post_title' => '', 11 | 'post_name' => '', 12 | 'post_content' => '', 13 | 'post_type' => 'fake', 14 | 'post_status' => 'publish', 15 | 'post_date' => date('Y-m-d') 16 | )); 17 | 18 | //slugify title 19 | if ($postArray['post_title'] && !$postArray['post_name']) { 20 | $postArray['post_name'] = sanitize_title_with_dashes($postArray['post_title']); 21 | } 22 | 23 | parent::__construct($postArray); 24 | } 25 | 26 | /** 27 | * @return string the Robots meta tag, should be NOINDEX, NOFOLLOW for some post types 28 | */ 29 | public function robots(){ 30 | return "NOINDEX, NOFOLLOW"; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-fast-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-background-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-mountains.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page-filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-tablet-landscape.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-tablet-portrait.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-torso.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/app/themes/coop-tech-oowp-theme/classes/ouPage.class.php: -------------------------------------------------------------------------------- 1 | isHomepage()) { 7 | return true; 8 | } 9 | return parent::hasFrontPageMenu(); 10 | } 11 | 12 | /** 13 | * Returns an array of ouClient posts connected to the page 14 | * 15 | * For pages that aren't the homepage, this will return an empty array. 16 | * When no Clients are connected to the homepage, this will return the 17 | * 18 most recent ones. Otherwise it will return the clients that were 18 | * connected to the Homepage. 19 | * 20 | * @return array|ooWP_Query|ouClient[] 21 | */ 22 | public function clients() { 23 | if (!$this->isHomepage()) { 24 | return []; 25 | } 26 | 27 | $ids = $this->metadata('homepage_clients'); 28 | 29 | if (!$ids || empty($ids)) { 30 | return ouClient::fetchAll(['posts_per_page' => 18]); 31 | } 32 | 33 | return ouClient::fetchById($ids); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-comment-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-marker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-orkut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-die-two.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page-copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-rdio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-usb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-zurb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-foot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page-multiple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-bing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-safety-cone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/manifesto.include.html: -------------------------------------------------------------------------------- 1 |

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 | 6 | 7 | 10 | 13 | 14 | 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 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-tumblr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-annotate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-compass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-play-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-crop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-photo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 13 | 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 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-eject.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-laptop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-male-symbol.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-telephone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-list-bullet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-apple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 14 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-pie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-xbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-page-remove.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 15 | 16 | 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 | 6 | 7 | 8 | 9 | 15 | 16 | 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 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-text-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-folder-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-paw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-price-tag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-social-lastfm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-address-book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 14 | 15 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-checkbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-torso-female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 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 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-folder-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-upload-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-list.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-die-four.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-graph-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 14 | 15 | 16 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 14 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /web/flats/foundation-icons/svgs/fi-microphone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 15 | 16 | 17 | --------------------------------------------------------------------------------