c/cpp labo deel1

This commit is contained in:
wgroeneveld 2018-07-13 14:08:43 +02:00
parent 4f5cb79107
commit 67043ba44c
6 changed files with 28 additions and 6 deletions

View File

@ -1,12 +1,11 @@
---
bigimg: /img/About Me.jpg
title: About Me
icontag: "fa-user"
disableComments: true
---
## Hi, Im Wouter Groeneveld
And I have a deep passion to inspire others on everything that drives me. I like to think of myself as one of those Rennaissance Men:
<hr/>
And I have a deep passion to inspire others on everything that drives me. I like to think of myself as one of those _polymaths_ or Rennaissance Men:
> Renaissance man (noun) - a person with many talents or areas of knowledge.

View File

@ -2,8 +2,12 @@
<main>
<h2><i class='fa {{ .Params.icontag }}'></i>&nbsp;{{ .Title }}</h2>
<hr/>
{{ if .Title }}
<h2>
<i class='fa {{ .Params.icontag }}'></i>&nbsp;{{ .Title }}
</h2>
<hr/>
{{ end }}
{{ with .Content }}
<div class="text-justify">

View File

@ -10,6 +10,7 @@
<main>
<a name="top"></a>
{{ partial "list-item" . }}
<br> <div class="text-justify">{{ .Content }}</div>
@ -43,6 +44,8 @@
{{ end }}
<i class='fa fa-arrow-circle-o-up'></i>&nbsp;<a href="#top">Top</a>
</main>
{{ partial "footer.html" . }}

View File

@ -1,11 +1,13 @@
<div class="item">
{{ if .Title }}
<h3>
{{ with .Params.icontag }}
<i class='fa {{ . }}'></i>&nbsp;
{{ end }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h3>
{{ end }}
{{ .Date.Format (.Site.Params.dateFormat | default "2 January 2006") | $.Scratch.Set "subtitle" }}
{{ with .Description }} {{ $.Scratch.Set "subtitle" . }} {{ end }}

View File

@ -0,0 +1,12 @@
<link href="{{"mermaid/mermaid.css" | relURL}}" type="text/css" rel="stylesheet"/>
<script defer src="{{"mermaid/mermaid.min.js" | relURL}}">
mermaid.initialize({
startOnLoad: true,
flowchart: {
useMaxWidth: true
}
});
</script>
<div class="mermaid" align="{{ if .Get "align" }}{{ .Get "align" }}{{ else }}center{{ end }}" >
{{ safeHTML .Inner }}
</div>

2
static/mermaid/mermaid.min.js vendored Normal file

File diff suppressed because one or more lines are too long