mirror of
https://git.coop/cotech/website.git
synced 2024-11-22 14:43:07 +00:00
Add technlogies to home page
This commit is contained in:
parent
876bcee6ea
commit
4d605b5e86
@ -8,6 +8,9 @@ collections:
|
|||||||
services:
|
services:
|
||||||
output: true
|
output: true
|
||||||
permalink: /service/:name
|
permalink: /service/:name
|
||||||
|
technologies:
|
||||||
|
output: true
|
||||||
|
permalink: /technology/:name
|
||||||
defaults:
|
defaults:
|
||||||
- scope:
|
- scope:
|
||||||
type: coops
|
type: coops
|
||||||
|
@ -7,6 +7,9 @@ clients:
|
|||||||
services:
|
services:
|
||||||
- consultancy
|
- consultancy
|
||||||
- development
|
- development
|
||||||
|
technologies:
|
||||||
|
- apache
|
||||||
|
- bash
|
||||||
---
|
---
|
||||||
Agile Collective is a small team of designers and developers who make websites for socially positive organisations such as charities, NGOs, social enterprises and educational institutions. We take a highly creative and integrated approach to all of our projects which results in a transparent and empowering working environment for the whole project team – including our client.
|
Agile Collective is a small team of designers and developers who make websites for socially positive organisations such as charities, NGOs, social enterprises and educational institutions. We take a highly creative and integrated approach to all of our projects which results in a transparent and empowering working environment for the whole project team – including our client.
|
||||||
|
|
||||||
|
3
_technologies/apache.md
Normal file
3
_technologies/apache.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
name: Apache
|
||||||
|
---
|
3
_technologies/bash.md
Normal file
3
_technologies/bash.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
name: Bash
|
||||||
|
---
|
BIN
images/technologies/apache.png
Normal file
BIN
images/technologies/apache.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
BIN
images/technologies/bash.png
Normal file
BIN
images/technologies/bash.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
21
index.html
21
index.html
@ -109,6 +109,27 @@ layout: home
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section id="technologies" data-magellan-target="technologies">
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-12 columns">
|
||||||
|
|
||||||
|
<h2>Technologies</h2>
|
||||||
|
<p>Here are some of the technologies we are currently using - the list continues to grow!</p>
|
||||||
|
|
||||||
|
<div class="row small-up-3 medium-up-4 large-up-6">
|
||||||
|
{% for technology in site.technologies %}
|
||||||
|
<div class="column">
|
||||||
|
<a href="{{ technology.url | relative_url }}" class="technology-thumb">
|
||||||
|
<div class="technology-thumb-img" style="background-image: url(/images/technologies/{{ technology.slug }}.png)"></div>
|
||||||
|
<h5>{{ technology.name }}</h5>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section id="contact" data-magellan-target="contact">
|
<section id="contact" data-magellan-target="contact">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="small-12 medium-6 small-centered columns">
|
<div class="small-12 medium-6 small-centered columns">
|
||||||
|
Loading…
Reference in New Issue
Block a user