Merge branch 'feature/tisseurs' into 'master'
Feature/tisseurs See merge request tisseurs/web!1
This commit is contained in:
commit
f62bcca81f
7 changed files with 50 additions and 5 deletions
|
@ -64,6 +64,11 @@ pygmentCodeFences = true
|
||||||
url = "/code_honneur/"
|
url = "/code_honneur/"
|
||||||
weight = 2
|
weight = 2
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Tisseurs"
|
||||||
|
url = "/tisseurs/"
|
||||||
|
weight = 2
|
||||||
|
|
||||||
# [[menu.main]]
|
# [[menu.main]]
|
||||||
# identifier = "tutos"
|
# identifier = "tutos"
|
||||||
# name = "Tutos"
|
# name = "Tutos"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
---
|
---
|
||||||
nom: 12b
|
nom: 12b
|
||||||
|
info: Electron libre
|
||||||
github: Lab-8916100448256
|
github: Lab-8916100448256
|
||||||
gitlab: lab.8916100448256
|
gitlab: lab.8916100448256
|
||||||
crapaud-fou: 12b
|
crapaudfou: 12b
|
||||||
youtube: Lab 8916100448256
|
youtube: Lab 8916100448256
|
||||||
instagram: farm.8916100448256
|
instagram: farm.8916100448256
|
||||||
|
email: lab.8916100448256@gmail.com
|
||||||
|
gravatar: d787f4d2e09d873f4f380195a0f8bbfb
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
---
|
---
|
||||||
nom: mckmonster
|
nom: mckmonster
|
||||||
|
info: Developpeur, plombier Crapaud-fou, BasTisseur, Gilet Jaune, Père
|
||||||
github: mckmonster
|
github: mckmonster
|
||||||
gitlab: mckmonster
|
gitlab: mckmonster
|
||||||
crapaud-fou: trenty
|
crapaudfou: trenty
|
||||||
|
email: mckmonster@mailo.com
|
||||||
|
gravatar: 13dac7dbbf38756e6b11fe35e1f1db44
|
5
layouts/partials/head_custom.html
Normal file
5
layouts/partials/head_custom.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<!--
|
||||||
|
If you want to include any custom html just before </head>, put it in /layouts/head_custom.html
|
||||||
|
Do not put anything in this file - it's only here so that hugo won't throw an error if /layouts/head_custom.html doesn't exist.
|
||||||
|
-->
|
||||||
|
<link rel="stylesheet" href="{{ "css/tisseurs.css" | absURL }}" />
|
7
static/css/tisseurs.css
Normal file
7
static/css/tisseurs.css
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.avatar {
|
||||||
|
display: inline;
|
||||||
|
vertical-align: middle;
|
||||||
|
/* width: 50px;
|
||||||
|
height: 50px; */
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
|
@ -118,4 +118,9 @@ url = "https://www.goodreads.com/%s"
|
||||||
title = "Goodreads"
|
title = "Goodreads"
|
||||||
icon = "fab fa-goodreads"
|
icon = "fab fa-goodreads"
|
||||||
|
|
||||||
|
[[social_icons]]
|
||||||
|
id = "crapaudfou"
|
||||||
|
url = "https://coa.crapaud-fou.org/direct/%s"
|
||||||
|
title = "crapaud-fou"
|
||||||
|
icon = "fab fa-rocketchat"
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,26 @@
|
||||||
<div role="main" class="container">
|
<div role="main" class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
||||||
{{ with .Content }}
|
{{ range $tisseur := .Site.Data.tisseurs }}
|
||||||
<div class="well">
|
<div class="well">
|
||||||
{{.}}
|
<h3><img class="avatar" src="https://www.gravatar.com/avatar/{{ $tisseur.gravatar }}?d=robohash&r=g"/>{{ $tisseur.nom }}</h3>
|
||||||
|
{{ if $tisseur.info }}
|
||||||
|
<p>{{ $tisseur.info }}</p>
|
||||||
|
{{ end }}
|
||||||
|
<ul class="list-inline">
|
||||||
|
{{ range $social := $.Site.Data.beautifulhugo.social.social_icons }}
|
||||||
|
{{- if isset $tisseur $social.id }}
|
||||||
|
<li>
|
||||||
|
<a href="{{ printf .url (index $tisseur $social.id) }}" target="_blank" title="{{ .title }}">
|
||||||
|
<span class="fa-stack">
|
||||||
|
<i class="fa fa-circle fa-stack-2x"></i>
|
||||||
|
<i class="{{ .icon }} fa-stack-1x fa-inverse"></i>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{- end -}}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue