Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
TOP := $(dir $(lastword $(MAKEFILE_LIST)))

.PHONY: all build sync serve
.PHONY: all serve

all: serve

build:
@$(HOME)/.rbenv/shims/jekyll build

serve:
docker run --name=gb-jekyll --rm --label=jekyll --volume=$(CURDIR):/srv/jekyll -it -p 127.0.0.1:4000:4000 jekyll/jekyll jekyll s
docker run --name=gb-hugo --rm --volume=$(CURDIR):/src -it -p 127.0.0.1:1313:1313 hugomods/hugo:base-0.124.0 hugo server --bind 0.0.0.0
4 changes: 2 additions & 2 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: "Sobre nosaltres"
# layout: default
# title: "Sobre nosaltres"
---

## Qui som?
Expand Down
13 changes: 13 additions & 0 deletions data/banner.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
content: |
<a style="color: #000b;" href="/tarifes/">
<div style="text-align: left; display: flex; flex-wrap: wrap; gap: 40px;">
<div>
<span style="font-size: 36px;">Fibra guifi.net 1Gb</span><br>
<span style="font-size: 48px; font-weight: bold;">9€</span> <span style="font-size: 22px">/ mes</span>
</div>
<div>
<span style="font-size: 36px;">Fibra bitstream 1Gb</span><br>
<span style="font-size: 48px; font-weight: bold;">27€</span> <span style="font-size: 22px">/ mes</span><br>
</div>
</div>
</a>
12 changes: 8 additions & 4 deletions themes/hugo-serif-theme/assets/scss/components/_intro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@

text-align: center;

/*background: rgb(255,224,116);*/
background: radial-gradient(farthest-corner at 0 100%, #25dffd 30%, #25ff91 95%);
background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);

@include media-breakpoint-up(md) {
padding-top: 140px;
padding-bottom: 140px;
padding-top: 40px;
padding-bottom: 40px;

// PC -> gradient
/*background: linear-gradient(45deg, rgb(33, 220, 198) 0%, rgb(170, 180, 233) 100%);*/
Expand Down