mirror of
https://git.coop/cotech/website.git
synced 2024-11-21 22:33:05 +00:00
Merged master
This commit is contained in:
commit
b358f5adc7
@ -19,7 +19,7 @@
|
||||
<div class="row">
|
||||
<div class="small-12 columns">
|
||||
<img src="/assets/img/coop-logo.png" class="float-center" />
|
||||
<p>Site developed by <a href="http://glowboxdesign.co.uk/" target="_blank">Glowbox Design</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
||||
<p>Site developed by <a href="http://glowboxdesign.co.uk/" target="_blank">Glowbox Design</a>, <a href="https://gofreerange.com/" target="_blank">Go Free Range</a> & <a href="http://outlandish.com" target="_blank">Outlandish</a>.</p>
|
||||
<p>Source code available on <a href="https://git.coop/cotech/website" target="_blank">git.coop</a>.</p>
|
||||
<p>Hosted by <a href="https://www.webarchitects.coop/" target="_blank">Webarchitects</a> for CoTech ©2018</p>
|
||||
</div>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
{% if page.excerpt and page.excerpt != "" %}
|
||||
<meta name="description" content="{{ page.excerpt | strip_html }}" />
|
||||
{% elsif page.collection == 'coops' %}
|
||||
{% if page.description %}
|
||||
<meta name="description" content="{{ page.description | strip_html | strip_newlines | condense_spaces }}" />
|
||||
{% elsif page.collection == 'coops' and page.content %}
|
||||
<meta name="description" content="{{ page.content | strip_html | strip_newlines | condense_spaces | truncate:150 }}" />
|
||||
{% else %}
|
||||
<meta name="description" content="Building a tech industry that's better for its workers and customers through co-operation, democracy and worker ownership." />
|
||||
@ -11,20 +11,22 @@
|
||||
<title>{{ page.title }} « Cooperative Technologists</title>
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="{{ page.title }}" />
|
||||
{% if page.excerpt %}
|
||||
<meta property="og:description" content="{{ page.excerpt | strip_html }}" />
|
||||
{% if page.description %}
|
||||
<meta property="og:description" content="{{ page.description | strip_html | strip_newlines }}" />
|
||||
{% elsif page.collection == 'coops' and page.content %}
|
||||
<meta property="og:description" content="{{ page.content | strip_html | strip_newlines | condense_spaces | truncate:150 }}" />
|
||||
{% else %}
|
||||
<meta property="og:description" content="Building a tech industry that's better for its workers and customers through co-operation, democracy and worker ownership." />
|
||||
{% endif %}
|
||||
<meta property="og:site_name" content="Cooperative Technologists" />
|
||||
{% if page.collection == 'coops' %}
|
||||
<meta property="og:image" content="/images/coops/{{ page.slug }}" />
|
||||
<meta property="og:image" content="/images/coops/{{ page.slug }}.png" />
|
||||
{% elsif page.collection == 'services' %}
|
||||
<meta property="og:image" content="/images/services/{{ page.slug }}" />
|
||||
<meta property="og:image" content="/images/services/{{ page.slug }}.png" />
|
||||
{% elsif page.collection == 'technologies' %}
|
||||
<meta property="og:image" content="/images/technologies/{{ page.slug }}" />
|
||||
<meta property="og:image" content="/images/technologies/{{ page.slug }}.png" />
|
||||
{% elsif page.collection == 'clients' %}
|
||||
<meta property="og:image" content="/images/clients/{{ page.slug }}" />
|
||||
<meta property="og:image" content="/images/clients/{{ page.slug }}.png" />
|
||||
{% else %}
|
||||
<meta property="og:image" content="/assets/img/Cotech_512x512.png" />
|
||||
{% endif %}
|
||||
|
@ -17,8 +17,8 @@
|
||||
<div class="small-12 small-centered columns">
|
||||
<img src="/images/services/{{ page.slug }}.png" alt="">
|
||||
<h1>Coops that offer <span>{{ page.name }}</span></h1>
|
||||
{% if page.excerpt %}
|
||||
<p>{{ page.excerpt }}</p>
|
||||
{% if page.description %}
|
||||
<p>{{ page.description }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -17,8 +17,8 @@
|
||||
<div class="small-12 small-centered columns">
|
||||
<img src="/images/technologies/{{ page.slug }}" alt="{{ page.name }}">
|
||||
<h1>Coops that use <span>{{ page.name }}</span></h1>
|
||||
{% if page.excerpt %}
|
||||
<p>{{ page.excerpt }}</p>
|
||||
{% if page.description %}
|
||||
<p>{{ page.description }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Virtual Servers
|
||||
name: Virtual Servers
|
||||
excerpt: CoTech co-operatives who provide virtual servers to clients.
|
||||
description: CoTech co-operatives who provide virtual servers to clients.
|
||||
---
|
||||
|
@ -4179,7 +4179,8 @@ a {
|
||||
color: #2199e8;
|
||||
text-decoration: none;
|
||||
line-height: inherit;
|
||||
cursor: pointer;}
|
||||
cursor: pointer; }
|
||||
|
||||
a:hover, a:focus {
|
||||
color: #1585cf; }
|
||||
a img {
|
||||
@ -6982,3 +6983,8 @@ footer {
|
||||
color: #ffffff; }
|
||||
|
||||
/*# sourceMappingURL=app.css.map */
|
||||
|
||||
|
||||
.forum-links a{
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
BIN
assets/img/cotech-300.png
Normal file
BIN
assets/img/cotech-300.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
BIN
assets/img/discourse-300.png
Normal file
BIN
assets/img/discourse-300.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
27
index.html
27
index.html
@ -31,11 +31,17 @@ layout: home
|
||||
<h6>Clients</h6>
|
||||
<h5>{{ site.clients.size }}+</h5>
|
||||
</div>
|
||||
<br />
|
||||
<p>CoTech is a network of ethical co-operatives providing technology, digital and creative services.</p>
|
||||
<p>Working with co-operatives has major benefits: you’ll work directly with the people who own the business, who have a stake in making sure your project succeeds. With no private shareholders drawing out dividends, you’ll get genuine value for money. And on top of that, you’ll get the benefit of working with small and responsive businesses which draw on the skills, specialisms and security of a large network.</p>
|
||||
<p>Browse our co-operatives and services or get in touch if you’d like us to help you find the right co-op partner.</p>
|
||||
<p>If you’re a tech co-op or a co-operatively minded freelancer and you’d like to <a href="/join">join us</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<section id="members" data-magellan-target="members">
|
||||
<div class="row">
|
||||
<div class="small-12 columns">
|
||||
@ -160,12 +166,21 @@ layout: home
|
||||
<div class="small-12 medium-6 small-centered columns">
|
||||
|
||||
<h2>Get In Touch</h2>
|
||||
<p>
|
||||
If you would like to work with us, or find out more,
|
||||
<a href="{{ site.forum }}">get in touch on our forum</a>.
|
||||
<br/> Not sure which tech coop, or coops, are right for you? Drop us a message on
|
||||
<a href="{{ site.forum }}">our forum</a>, and we will help you find the perfect match.
|
||||
</p>
|
||||
<p>
|
||||
All the members of CoTech are available to hire, and each has different specialisms. We vary in size from 2 people to 40+ people, and use different technologies. If you know what <a href="#technologies">technology</a> or <a href="#services">service</a> you're looking, you can use this site to find suitable co-ops. If you're not sure what you're looking for you can browse the <a href="#members">members</a> and get in touch with one that you like the look of. We're all committed to being honest about our capabilites and capacities, and we'll refer you to a different co-op if we think they'll offer you better value.
|
||||
</p>
|
||||
<div class="row forum-links">
|
||||
<div class="small-12 medium-6 columns">
|
||||
<a href="https://community.coops.tech/"><img src="/assets/img/discourse-300.png" /></a>
|
||||
</div>
|
||||
<div class="small-12 medium-6 columns">
|
||||
|
||||
<a href="https://community.coops.tech/"><img class="mx-auto" src="/assets/img/cotech-300.png" /></a>
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
If you don't want to hire us but want to find out more about co-ops, find a job in a co-op or discuss how technology can help solve the world's myriad problems, please head over to our <a href="{{ site.forum }}">Discourse forum</a>.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user