Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sito
poul.org
Commits
f9e63f82
Verified
Commit
f9e63f82
authored
May 13, 2021
by
Roberto Bochet
Browse files
Added links page
parent
0a904463
Pipeline
#839
passed with stages
in 5 minutes and 54 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
assets/css/links.scss
0 → 100755
View file @
f9e63f82
---
---
//
Reset
using
Normalize
@
import
"normalize"
;
// Site configuration
@import
"config"
;
@import
"colors/colors"
;
@import
"colors/backgrounds"
;
// Modules
@import
"modules/global"
;
@import
"modules/fonts"
;
html
{
width
:
100%
;
height
:
100%
;
margin
:
0
;
body
{
@extend
.bg-very-dark
;
width
:
100%
;
height
:
100%
;
margin
:
0
;
font-size
:
18pt
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
.logo
{
margin
:
30px
0
;
max-width
:
200px
;
width
:
60vw
;
}
.link
{
@extend
.bg-blueish-gray
;
width
:
80%
;
max-width
:
800px
;
text-align
:
center
;
margin
:
10pt
0
;
padding
:
10pt
;
text-decoration
:
none
;
color
:
$poul_yellow
;
}
}
}
\ No newline at end of file
links.html
0 → 100644
View file @
f9e63f82
---
links:
- url: "http://go.poul.org/tg"
text: "Gruppo Telegram"
- url: "http://poul.org/"
text: "poul.org"
---
<!DOCTYPE html>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
POuL link
</title>
<!-- Favicon -->
<link
rel=
"icon"
type=
"image/x-icon"
href=
"{{ '/assets/img/favicon.ico' | relative_url }}"
/>
<!-- Stylesheet -->
<link
rel=
"stylesheet"
href=
"{{ '/site/assets/fonts/OpenSans/open-sans.css' | static_url }}"
>
<link
rel=
"stylesheet"
href=
"{{ '/assets/css/links.css' | relative_url }}"
>
<img
class=
"logo"
src=
"{{ '/site/assets/img/logo/logo_notext.svg' | static_url }}"
alt=
"logo poul"
/>
{% for link in page.links %}
<a
class=
"link"
href=
"{{ link.url }}"
>
{{ link.text }}
</a>
{% endfor %}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment