Merge branch 'master' into updated_menu

This commit is contained in:
harry 2019-04-25 15:35:13 +01:00
commit fd77a75d44
6 changed files with 19 additions and 2 deletions

View File

@ -1,11 +1,21 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page.excerpt %}
<meta name="description" content="{{ page.excerpt | strip_html }}" />
{% elsif 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." />
{% endif %}
<meta charset="UTF-8">
<title>{{ page.title }} &laquo; 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 }}" />
{% 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" />
<meta property="og:image" content="/app/themes/coop-tech-oowp-theme/public/img/Cotech_512x512.png" />
<meta property="og:locale" content="en_GB" />

View File

@ -17,6 +17,9 @@
<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>
{% endif %}
</div>
</div>
</div>

View File

@ -17,6 +17,9 @@
<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>
{% endif %}
</div>
</div>
</div>

View File

@ -1,4 +1,5 @@
---
title: Virtual Servers
name: Virtual Servers
excerpt: CoTech co-operatives who provide virtual servers to clients.
---

View File

@ -4179,7 +4179,8 @@ a {
color: #2199e8;
text-decoration: none;
line-height: inherit;
cursor: pointer; }
cursor: pointer;
word-break: break-all; }
a:hover, a:focus {
color: #1585cf; }
a img {

File diff suppressed because one or more lines are too long