4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 16:40:52 +00:00

Compare commits

...

12 Commits

6 changed files with 22 additions and 23 deletions

View File

@ -19,7 +19,7 @@
<div class="row"> <div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
<img src="/assets/img/coop-logo.png" class="float-center" /> <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> &amp; <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> &amp; <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>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 &#xa9;2018</p> <p>Hosted by <a href="https://www.webarchitects.coop/" target="_blank">Webarchitects</a> for CoTech &#xa9;2018</p>
</div> </div>

View File

@ -1,8 +1,8 @@
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page.excerpt != blank %} {% if page.description %}
<meta name="description" content="{{ page.excerpt | strip_html }}" /> <meta name="description" content="{{ page.description | strip_html | strip_newlines | condense_spaces }}" />
{% elsif page.collection == 'coops' and page.ontent != blank %} {% elsif page.collection == 'coops' and page.content %}
<meta name="description" content="{{ page.content | strip_html | strip_newlines | condense_spaces | truncate:150 }}" /> <meta name="description" content="{{ page.content | strip_html | strip_newlines | condense_spaces | truncate:150 }}" />
{% else %} {% else %}
<meta name="description" content="Building a tech industry that's better for its workers and customers through co-operation, democracy and worker ownership." /> <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 }} &laquo; Cooperative Technologists</title> <title>{{ page.title }} &laquo; Cooperative Technologists</title>
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:title" content="{{ page.title }}" /> <meta property="og:title" content="{{ page.title }}" />
{% if page.excerpt %} {% if page.description %}
<meta property="og:description" content="{{ page.excerpt | strip_html }}" /> <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 %} {% 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." /> <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 %} {% endif %}
<meta property="og:site_name" content="Cooperative Technologists" /> <meta property="og:site_name" content="Cooperative Technologists" />
{% if page.collection == 'coops' %} {% 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' %} {% 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' %} {% 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' %} {% elsif page.collection == 'clients' %}
<meta property="og:image" content="/images/clients/{{ page.slug }}" /> <meta property="og:image" content="/images/clients/{{ page.slug }}.png" />
{% else %} {% else %}
<meta property="og:image" content="/assets/img/Cotech_512x512.png" /> <meta property="og:image" content="/assets/img/Cotech_512x512.png" />
{% endif %} {% endif %}

View File

@ -17,8 +17,8 @@
<div class="small-12 small-centered columns"> <div class="small-12 small-centered columns">
<img src="/images/services/{{ page.slug }}.png" alt=""> <img src="/images/services/{{ page.slug }}.png" alt="">
<h1>Coops that offer <span>{{ page.name }}</span></h1> <h1>Coops that offer <span>{{ page.name }}</span></h1>
{% if page.excerpt %} {% if page.description %}
<p>{{ page.excerpt }}</p> <p>{{ page.description }}</p>
{% endif %} {% endif %}
</div> </div>
</div> </div>

View File

@ -17,8 +17,8 @@
<div class="small-12 small-centered columns"> <div class="small-12 small-centered columns">
<img src="/images/technologies/{{ page.slug }}" alt="{{ page.name }}"> <img src="/images/technologies/{{ page.slug }}" alt="{{ page.name }}">
<h1>Coops that use <span>{{ page.name }}</span></h1> <h1>Coops that use <span>{{ page.name }}</span></h1>
{% if page.excerpt %} {% if page.description %}
<p>{{ page.excerpt }}</p> <p>{{ page.description }}</p>
{% endif %} {% endif %}
</div> </div>
</div> </div>

View File

@ -1,5 +1,5 @@
--- ---
title: Virtual Servers title: Virtual Servers
name: 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.
--- ---

View File

@ -31,6 +31,7 @@ layout: home
<h6>Clients</h6> <h6>Clients</h6>
<h5>{{ site.clients.size }}+</h5> <h5>{{ site.clients.size }}+</h5>
</div> </div>
<br />
<p>CoTech is a network of ethical co-operatives providing technology, digital and creative services.</p> <p>CoTech is a network of ethical co-operatives providing technology, digital and creative services.</p>
<p>Working with co-operatives has major benefits: youll 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, youll get genuine value for money. And on top of that, youll get the benefit of working with small and responsive businesses which draw on the skills, specialisms and security of a large network.</p> <p>Working with co-operatives has major benefits: youll 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, youll get genuine value for money. And on top of that, youll 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 youd like us to help you find the right co-op partner.</p> <p>Browse our co-operatives and services or get in touch if youd like us to help you find the right co-op partner.</p>
@ -40,6 +41,7 @@ layout: home
</div> </div>
</div> </div>
<section id="members" data-magellan-target="members"> <section id="members" data-magellan-target="members">
<div class="row"> <div class="row">
<div class="small-12 columns"> <div class="small-12 columns">
@ -169,20 +171,15 @@ layout: home
</p> </p>
<div class="row forum-links"> <div class="row forum-links">
<div class="small-12 medium-6 columns"> <div class="small-12 medium-6 columns">
<img src="/assets/img/discourse-300.png" /> <a href="https://community.coops.tech/"><img src="/assets/img/discourse-300.png" /></a>
</div> </div>
<div class="small-12 medium-6 columns"> <div class="small-12 medium-6 columns">
<img class="mx-auto" src="/assets/img/cotech-300.png" /> <a href="https://community.coops.tech/"><img class="mx-auto" src="/assets/img/cotech-300.png" /></a>
</div> </div>
</div> </div>
<p> <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>.
If you want to 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 }}">Disourse forum</a>.
</p> </p>
</div> </div>