commit
156be7c151
11 changed files with 346 additions and 0 deletions
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
/* |
||||
* ---------------------------------------------------------------------------- |
||||
* "THE ENERGYDRINK LICENSE" (revision 1312): |
||||
* <june@familier.net.eu.org> wrote this file. As long as you retain this |
||||
* notice and you are an anarchist/socialist/communist you can do whatever you |
||||
* want with this stuff. If we meet some day, and you think this stuff is worth |
||||
* it, you can buy me an energy drink in return June |
||||
* ---------------------------------------------------------------------------- |
||||
*/ |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
# The URL the site will be built for |
||||
base_url = "https://june.lacoloc.cafe" |
||||
|
||||
title = "ligilo" |
||||
description = "One web page, to link them all" |
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory |
||||
compile_sass = true |
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library |
||||
build_search_index = false |
||||
|
||||
[markdown] |
||||
# Whether to do syntax highlighting |
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola |
||||
highlight_code = false |
||||
|
||||
[extra] |
||||
# Put all your custom variables here |
||||
icon = "noun_link.svg" |
||||
style = "dracula.css" |
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
+++ |
||||
title = "June" |
||||
|
||||
[extra] |
||||
avatar = "june.png" |
||||
style = "dracula.css" |
||||
+++ |
||||
|
||||
## DNS Witch, le collectif |
||||
### https://dns-witch.eu.org |
||||
|
||||
## DNS Witch, le service |
||||
### https://dns-witch.net.eu.org |
||||
|
||||
## ligilo |
||||
### https://labo.lacoloc.cafe/june/ligilo |
||||
|
||||
## La Coloc’ |
||||
### https://lacoloc.cafe |
||||
|
||||
## Blog |
||||
### https://june.blog.wehost.lgbt |
||||
|
||||
## Liberapay |
||||
### https://liberapay.com/June_Cafe/ |
||||
|
||||
## uTip |
||||
### https://utip.io/june_cafe |
||||
|
||||
## Twitter |
||||
### https://twitter.com/The_DNS_Witch |
||||
|
||||
## Fediverse |
||||
### https://social.lacoloc.cafe/june |
@ -0,0 +1,78 @@
@@ -0,0 +1,78 @@
|
||||
/* |
||||
DarkMode style sheet is based on the work of izmcm : |
||||
https://github.com/MichaelBarney/LinkFree/commits/master/Templates/DarkMode/ |
||||
*/ |
||||
|
||||
:root { |
||||
--bgColor:#1C1C1C; |
||||
--accentColor: #E6E6E6; |
||||
--font: 'b612', sans-serif; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'b612'; |
||||
src: url('fonts/b612-regular.ttf') format('truetype'); |
||||
} |
||||
|
||||
body{ |
||||
background-color: var(--bgColor); |
||||
} |
||||
|
||||
#userPhoto{ |
||||
width: 110px; |
||||
height: 110px; |
||||
display: block; |
||||
margin: 35px auto 20px; |
||||
border-radius: 50%; |
||||
} |
||||
|
||||
#userName{ |
||||
color: #bbb; |
||||
font-size: 1rem; |
||||
font-weight: 600; |
||||
line-height: 1.25; |
||||
display: block; |
||||
font-family: var(--font); |
||||
width: 100%; |
||||
text-align: center; |
||||
text-decoration: none; |
||||
} |
||||
|
||||
#links{ |
||||
max-width: 675px; |
||||
width: auto; |
||||
display: block; |
||||
margin: 27px auto; |
||||
} |
||||
.link{ |
||||
display: block; |
||||
background-color: var(--accentColor); |
||||
color: var(--bgColor); |
||||
font-family: var(--font); |
||||
text-align: center; |
||||
margin-bottom: 20px; |
||||
padding: 17px; |
||||
text-decoration: none; |
||||
font-size: 1rem; |
||||
transition: all .25s cubic-bezier(.08,.59,.29,.99); |
||||
border: solid var(--accentColor) 2px; |
||||
} |
||||
|
||||
.link:hover{ |
||||
background-color: var(--bgColor); |
||||
color: var(--accentColor); |
||||
} |
||||
|
||||
footer{ |
||||
text-align: center; |
||||
|
||||
color: #bbb; |
||||
|
||||
font-family: var(--font); |
||||
font-size: 0.75rem; |
||||
font-weight: 400; |
||||
} |
||||
|
||||
footer a { |
||||
color: var(--accentColor) |
||||
} |
@ -0,0 +1,104 @@
@@ -0,0 +1,104 @@
|
||||
/* |
||||
Dracula style sheet is based on the work of Jmarcondes : |
||||
https://github.com/MichaelBarney/LinkFree/commits/master/Templates/draculaTheme/index.html |
||||
*/ |
||||
|
||||
:root { |
||||
--font-family: 'b612'; |
||||
--font: 'b612', sans-serif; |
||||
|
||||
--background: #282a36; |
||||
--selection:#44475a; |
||||
--comment:#6272a4; |
||||
--purple:#bd93f9; |
||||
--white:#f8f8f2; |
||||
--pink:#ff79c6; |
||||
--orange: #ffb86c; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'b612'; |
||||
src: url('fonts/b612-regular.ttf') format('truetype'); |
||||
} |
||||
|
||||
body{ |
||||
background-color: var(--background); |
||||
color: var(--white); |
||||
} |
||||
|
||||
footer{ |
||||
text-align: center; |
||||
|
||||
color:var(--comment); |
||||
|
||||
font-family: var(--font); |
||||
font-size: 0.75rem; |
||||
font-weight: 400; |
||||
} |
||||
|
||||
footer a { |
||||
color: var(--orange) |
||||
} |
||||
|
||||
#userPhoto{ |
||||
width: 96px; |
||||
height: 96px; |
||||
|
||||
display: block; |
||||
|
||||
margin: 35px auto 20px; |
||||
|
||||
border-radius: 50%; |
||||
border: solid var(--purple) 2px; |
||||
} |
||||
|
||||
#userName{ |
||||
width: 100%; |
||||
|
||||
color: var(--pink); |
||||
|
||||
font-family: var(--font); |
||||
font-size: 1rem; |
||||
font-weight: 400; |
||||
|
||||
text-align: center; |
||||
text-decoration: none; |
||||
|
||||
line-height: 1.25; |
||||
display: block; |
||||
} |
||||
|
||||
#links{ |
||||
max-width: 675px; |
||||
width: auto; |
||||
|
||||
display: block; |
||||
|
||||
margin: 27px auto; |
||||
} |
||||
.link{ |
||||
display: block; |
||||
margin-bottom: 20px; |
||||
padding: 17px; |
||||
|
||||
background-color: var(--background); |
||||
color:var(--comment); |
||||
|
||||
font-family: var(--font); |
||||
font-size: 1rem; |
||||
font-weight: 500; |
||||
|
||||
border-radius: 5px; |
||||
border: solid var(--purple) 1px; |
||||
|
||||
text-align: center; |
||||
text-decoration: none; |
||||
|
||||
transition: all .25s cubic-bezier(.08,.59,.29,.99); |
||||
|
||||
} |
||||
|
||||
.link:hover{ |
||||
background-color: var(--selection); |
||||
color: var(--purple); |
||||
} |
Binary file not shown.
After Width: | Height: | Size: 100 KiB |
@ -0,0 +1,44 @@
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<meta charset="UTF-8"> |
||||
<title>{{ section.title }} | {{ config.title }}</title> |
||||
<link rel="icon" href="{{ config.base_url }}/img/pfp/{{ section.extra.avatar }}" type="image/x-icon"> |
||||
<link rel="stylesheet" href="{{ config.base_url }}/{{ section.extra.style }}"> |
||||
<meta property="og:title" content="{{ section.title }} | {{ config.title }}"> |
||||
<meta property="og:type" content="website"> |
||||
<meta property="og:image" content="{{ config.base_url }}/img/pfp/{{ section.extra.avatar }}"> |
||||
<meta property="og:description" content="{{ config.description }}"> |
||||
<meta property="og:site_name" content="{{ config.title }}"> |
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<img id="userPhoto" src="{{ config.base_url }}/img/pfp/{{ section.extra.avatar }}" alt="User Photo"> |
||||
|
||||
<a href="" id="userName">{{ section.title }}</a> |
||||
{% block toc %} |
||||
{% if section.toc %} |
||||
{% set toc = section.toc %} |
||||
{% elif section.toc %} |
||||
{% set toc = section.toc %} |
||||
{% endif %} |
||||
{% if toc %} |
||||
<div id="links"> |
||||
{% for h2 in toc %} |
||||
{% if h2.children %} |
||||
{% for h3 in h2.children %} |
||||
<a class="link" href="{{h3.title | safe}}" target="_blank">{{ h2.title }}</a> |
||||
{% endfor %} |
||||
{% endif %} |
||||
{% endfor %} |
||||
</div> |
||||
{% endif %} |
||||
{% endblock toc %} |
||||
|
||||
<footer> |
||||
Powered by <a href="https://getzola.org" target="_blank">Zola</a> / <a href="https://github.com/june-coloc/ligilo" target="_blank">ligilo</a> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<meta charset="UTF-8"> |
||||
<title>{{ section.title }} | {{ config.title }}</title> |
||||
<link rel="icon" href="img/{{ config.extra.icon }}" type="image/x-icon"> |
||||
<link rel="stylesheet" href="{{ config.extra.style }}"> |
||||
<meta property="og:title" content="{{ section.title }} | {{ config.title }}"> |
||||
<meta property="og:type" content="website"> |
||||
<meta property="og:image" content="{{ config.base_url }}/img/{{ config.extra.icon }}"> |
||||
<meta property="og:description" content="{{ config.description }}"> |
||||
<meta property="og:site_name" content="{{ config.title }}"> |
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<img src="img/{{ config.extra.icon }}" alt="ligilo icon" width="10%"> |
||||
|
||||
<div id="links"> |
||||
|
||||
</div> |
||||
|
||||
<footer> |
||||
Powered by <a href="https://getzola.org" target="_blank">Zola</a> / <a href="https://github.com/june-coloc/ligilo" target="_blank">ligilo</a> |
||||
<br>ligilo’s icon is "link" by Milton Raposo C. Rêgo Jr. from the <a href="https://thenounproject.com" target="_blank">Noun Project</a> |
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
name = "ligilo" |
||||
description = "A LinkTree-like theme" |
||||
license = "EnergyDrink License" |
||||
homepage = "" |
||||
# The minimum version of Zola required |
||||
min_version = "0.13.0" |
||||
# An optional live demo URL |
||||
demo = "https://june.lacoloc.cafe" |
||||
|
||||
# Any variable there can be overridden in the end user `config.toml` |
||||
# You don't need to prefix variables by the theme name but as this will |
||||
# be merged with user data, some kind of prefix or nesting is preferable |
||||
# Use snake_casing to be consistent with the rest of Zola |
||||
[extra] |
||||
|
||||
# The theme author info: you! |
||||
[author] |
||||
name = "June" |
||||
homepage = "https://june.lacoloc.cafe" |
||||
|
||||
# If this is porting a theme from another static site engine, provide |
||||
# the info of the original author here |
||||
[original] |
||||
author = "Michael Barney" |
||||
homepage = "http://www.michaelbarney.com/" |
||||
repo = "https://github.com/MichaelBarney/LinkFree" |
Loading…
Reference in new issue