Compare commits
17 Commits
1.0.5
...
new-colour
Author | SHA1 | Date | |
---|---|---|---|
9c825027c5 | |||
33add8fd8f | |||
1f3ada29d7 | |||
442d758cb4 | |||
b0a959e2e4 | |||
bdea07164d | |||
cf4f1fbd46 | |||
81a96fbf34 | |||
eec8b982eb | |||
9ed30e8717 | |||
f675143d59 | |||
bbea557322 | |||
c23bf3f8d9 | |||
d51f265fd5 | |||
4e1d28ece6 | |||
96384a91ea | |||
43559560e8 |
@ -1,28 +1,21 @@
|
|||||||
image: ruby:2.4.2
|
image: ruby:2.4.2
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
before_script:
|
|
||||||
- gem install jekyll
|
|
||||||
script:
|
|
||||||
- jekyll build -d public
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
before_script:
|
before_script:
|
||||||
|
- apt-get update -y
|
||||||
|
- apt-get -y install rsync
|
||||||
- gem install jekyll
|
- gem install jekyll
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
script:
|
script:
|
||||||
- jekyll build -d public
|
- jekyll build -d public
|
||||||
- ./bin/deploy
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- rsync -rvz --delete -e 'ssh -o StrictHostKeyChecking=no' ./public/ "$SERVER_USER"@autonomic.zone:/var/www/autonomic.zone/html/
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
only:
|
only:
|
||||||
- tags
|
- master
|
||||||
|
26
bin/deploy
26
bin/deploy
@ -1,26 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
GITUSERNAME="autonomicgitlabci"
|
|
||||||
GITUSEREMAIL="autonomicgitlabci@nowhere.com"
|
|
||||||
DEPLOYSCRIPT="https://github.com/X1011/git-directory-deploy/raw/master/deploy.sh"
|
|
||||||
|
|
||||||
export GIT_DEPLOY_DIR="public"
|
|
||||||
export GIT_DEPLOY_BRANCH="production"
|
|
||||||
export GIT_DEPLOY_REPO="git@gitlab.com:autonomic-cooperative/autonomic-cooperative.gitlab.io.git"
|
|
||||||
|
|
||||||
apt-get update -y
|
|
||||||
apt-get install -yqq wget openssh-client
|
|
||||||
|
|
||||||
wget $DEPLOYSCRIPT && chmod +x deploy.sh
|
|
||||||
|
|
||||||
git config --global user.email $GITUSEREMAIL
|
|
||||||
git config --global user.name $GITUSERNAME
|
|
||||||
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
eval "$(ssh-agent -s)"
|
|
||||||
ssh-add <(echo "$SSH_PRIVATE_KEY")
|
|
||||||
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
|
||||||
|
|
||||||
./deploy.sh -m "Git tag: $(git describe --exact-match HEAD)"
|
|
||||||
|
|
||||||
rm -Rfv .ssh
|
|
@ -14,6 +14,13 @@
|
|||||||
<ul class="copyright">
|
<ul class="copyright">
|
||||||
<li class="icon fa-creative-commons"> {{ site.title }}</li>
|
<li class="icon fa-creative-commons"> {{ site.title }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<address>
|
||||||
|
Autonomic Co-operative</br>
|
||||||
|
1539 Pershore Road </br>
|
||||||
|
Stirchley</br>
|
||||||
|
B30 2JH
|
||||||
|
</address>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
5
src/_includes/membership-footer.html
Normal file
5
src/_includes/membership-footer.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<section class="wrapper style5 special compressed">
|
||||||
|
<a href="https://www.coops.tech/" target="_blank">
|
||||||
|
<img src="/assets/images/Member-of-CoTech-logo-200.png" alt="Member of Co-Tech"/>
|
||||||
|
</a>
|
||||||
|
</section>
|
@ -9,6 +9,7 @@
|
|||||||
{% include services.html %}
|
{% include services.html %}
|
||||||
{% include contact.html %}
|
{% include contact.html %}
|
||||||
{% include footer.html %}
|
{% include footer.html %}
|
||||||
|
{% include membership-footer.html %}
|
||||||
{% include foot-scripts.html %}
|
{% include foot-scripts.html %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
BIN
src/assets/images/Member-of-CoTech-logo-200.png
Normal file
BIN
src/assets/images/Member-of-CoTech-logo-200.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.5 KiB |
@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
> a {
|
> a {
|
||||||
border: 0;
|
border: 0;
|
||||||
color: inherit;
|
color: black;
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
letter-spacing: _size(letter-spacing-alt);
|
letter-spacing: _size(letter-spacing-alt);
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.h2, .h3, .h4, .h5, .h6,
|
.h2, .h3, .h4, .h5, .h6,
|
||||||
h2, h3, h4, h5, h6 {
|
h2, h3, h4, h5, h6 {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
@ -210,6 +210,14 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.compressed {
|
||||||
|
padding: 0.5em 0 0;
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 150px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.style1 {
|
&.style1 {
|
||||||
@include wrapper(accent1);
|
@include wrapper(accent1);
|
||||||
}
|
}
|
||||||
@ -229,7 +237,7 @@
|
|||||||
&.style5 {
|
&.style5 {
|
||||||
@include wrapper(accent2);
|
@include wrapper(accent2);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.style6 {
|
&.style6 {
|
||||||
@include wrapper(accent4);
|
@include wrapper(accent4);
|
||||||
}
|
}
|
||||||
@ -241,4 +249,4 @@
|
|||||||
@include breakpoint(small) {
|
@include breakpoint(small) {
|
||||||
@include padding(3em, 2em);
|
@include padding(3em, 2em);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
border2: rgba(0,0,0,0.25),
|
border2: rgba(0,0,0,0.25),
|
||||||
border2-bg: rgba(255,255,255,0.2)
|
border2-bg: rgba(255,255,255,0.2)
|
||||||
),
|
),
|
||||||
|
|
||||||
accent2: (
|
accent2: (
|
||||||
bg: #ffffff,
|
bg: #ffffff,
|
||||||
fg-bold: #2E3842,
|
fg-bold: #2E3842,
|
||||||
@ -72,9 +72,9 @@
|
|||||||
border2: rgba(0,0,0,0.25),
|
border2: rgba(0,0,0,0.25),
|
||||||
border2-bg: rgba(255,255,255,0.2)
|
border2-bg: rgba(255,255,255,0.2)
|
||||||
),
|
),
|
||||||
|
|
||||||
accent4: (
|
accent4: (
|
||||||
bg: #25558C,
|
bg: #313533,
|
||||||
fg-bold: #ffffff,
|
fg-bold: #ffffff,
|
||||||
fg: mix(#25558C, #ffffff, 25%),
|
fg: mix(#25558C, #ffffff, 25%),
|
||||||
fg-light: mix(#25558C, #ffffff, 40%),
|
fg-light: mix(#25558C, #ffffff, 40%),
|
||||||
@ -82,5 +82,16 @@
|
|||||||
border-bg: rgba(255,255,255,0.075),
|
border-bg: rgba(255,255,255,0.075),
|
||||||
border2: rgba(0,0,0,0.25),
|
border2: rgba(0,0,0,0.25),
|
||||||
border2-bg: rgba(255,255,255,0.2)
|
border2-bg: rgba(255,255,255,0.2)
|
||||||
)
|
),
|
||||||
);
|
|
||||||
|
accent5: (
|
||||||
|
bg: #41a19d,
|
||||||
|
fg-bold: #ffffff,
|
||||||
|
fg: mix(#F3A712, #ffffff, 25%),
|
||||||
|
fg-light: mix(#F3A712, #ffffff, 40%),
|
||||||
|
border: rgba(0,0,0,0.125),
|
||||||
|
border-bg: rgba(255,255,255,0.075),
|
||||||
|
border2: rgba(0,0,0,0.25),
|
||||||
|
border2-bg: rgba(255,255,255,0.2)
|
||||||
|
),
|
||||||
|
);
|
||||||
|
@ -126,15 +126,15 @@ body.is-mobile {
|
|||||||
/* Footer */
|
/* Footer */
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
@include padding(6em, 0);
|
padding: 4em 0 3.5em;
|
||||||
background-color: darken(_palette(bg), 8);
|
background-color: darken(_palette(bg), 8);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
|
||||||
.icons {
|
.icons {
|
||||||
font-size: 1.25em;
|
font-size: 1.25em;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: _palette(fg-light);
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: _palette(fg);
|
color: _palette(fg);
|
||||||
@ -143,7 +143,6 @@ body.is-mobile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.copyright {
|
.copyright {
|
||||||
color: _palette(fg-light);
|
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
letter-spacing: _size(letter-spacing-alt);
|
letter-spacing: _size(letter-spacing-alt);
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
Reference in New Issue
Block a user