4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 08:30:47 +00:00

Compare commits

..

9 Commits

9 changed files with 84 additions and 5 deletions

View File

@ -65,11 +65,21 @@ And visit [localhost:4000](http://localhost:4000) to view the site.
## Deployment
### Dev/Staging
When changes are committed to the `master` branch the `.gitlab-ci.yml` file triggers the building of the site and then the copying of the results to [dev.coops.tech](https://dev.coops.tech).
Once someone has verified that looks ok, you can use the
[GitLab environments](https://git.coop/cotech/website/environments)
to promote it to [www.coops.tech](https://www.coops.tech)
### Production
You need to manually deploy the changes from dev to production.
1. View the changes on [dev.coops.tech](https://dev.coops.tech) and ensure you're happy for them to be pushed to production.
2. Visit [GitLab environments](https://git.coop/cotech/website/environments). __NOTE.__ If you don't have access to the environments page then post a message in the [Website category of the CoTech forum](https://community.coops.tech/c/cotech/website) to ask someone to do it for you.
3. Click the "Play" icon on the right of the screen in the row for the "dev" environment and choose "deploy:production".
4. Your changes will be visible in production when the commit listed in the "production" environment row matches the commit listed in the "dev" environment row.
## Contributing

View File

@ -1,11 +1,19 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if page.excerpt %}
<meta name="description" content="{{ page.excerpt | strip_html }}" />
{% 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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB