generated from maximevaillancourt/digital-garden-jekyll-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9d8692
commit 3bd08e3
Showing
11 changed files
with
79 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Site réalisé avec Obsidian, Github et Netlify en utilisant un modèle fourni par Maxime Vaillancourt <a href="https://github.com/maximevaillancourt/digital-garden-jekyll-template">disponible sur Github</a> | ||
Pour en savoir plus sur ce site, consulter la page <a class="internal-link" href="../_pages/presentation.md">à propos</a> | ||
Pour en savoir plus sur ce site, consulter la page <a class="internal-link" href="/about">à propos</a> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<p>Je suis Damien Belvèze, conservateur de bibliothèque à l’Université | ||
de Rennes. J’utilise Obsidian depuis février 2021 et j’ai assuré des | ||
formations à cet outil pour les organismes suivants : - Collège Doctoral | ||
de Bretagne (voir | ||
<a href="https://zenodo.org/record/6773059">support</a>) - URFIST de | ||
Rennes (<a href="https://obsidian.dbelveze.fr">le présent guide</a> en | ||
est le support)</p> | ||
<p>contact : damien.belveze AT universite-rennes.fr twitter : <span | ||
class="citation" data-cites="dbelveze">@dbelveze</span> github: | ||
https://github.com/damienbelveze?tab=repositories</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<style> | ||
|
||
/* le fait de mettre le css à l'interieur de balises <style> permettra d'utiliser la commande pandoc suivante : | ||
pandoc -s fichierdépart.md -H fichier.css -o fichier_destination.html | ||
l'argument -H encapsule tout le css dans le body du document html créé */ | ||
|
||
|
||
|
||
/* dimensionnement de la page à la taille de l'écran | ||
couleur de fond */ | ||
|
||
html, body{ | ||
|
||
background-color: #11191f; | ||
width:100%; | ||
height: 100%; | ||
margin:0 auto; | ||
color: #ffffff; | ||
} | ||
|
||
/* couleur, taille et alignement du titre 1 = titre du document en markdown */ | ||
|
||
h1{ | ||
|
||
text-align:center; | ||
font-size: 2rem; | ||
color: #edf0f3; | ||
} | ||
|
||
/* couleur, taille et alignement du titre 2 */ | ||
|
||
h2 { | ||
font-size: 1.75rem; | ||
text-align:center; | ||
color: #599fa6; | ||
} | ||
|
||
/* espace de la citation */ | ||
|
||
blockquote.style { | ||
font: 14px/20px italic Times, serif; | ||
padding: 8px; | ||
background-color: #141e26; | ||
color: #a65980; | ||
border-top: 1px solid #e1cc89; | ||
border-bottom: 1px solid #e1cc89; | ||
margin: 5px; | ||
background-position: top left; | ||
background-repeat: no-repeat; | ||
text-indent: 23px; | ||
} | ||
|
||
/* liste à puces, puces carrées */ | ||
|
||
ul{ | ||
list-style: square;; | ||
} | ||
|
||
</style> |