forked from diverse-team/diverse-team.github.io
-
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
Showing
7 changed files
with
1,067 additions
and
107 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ email: [email protected] | |
summary: DevOps, langages dédiés, environnement de développement, interaction humain-machine, ingénierie dirigée par les modèles, live programming, utilisabilité | ||
--- | ||
|
||
|
||
## Contexte | ||
|
||
|
||
|
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
{{ define "content" }} | ||
{{ $data := newScratch }} | ||
{{ $data.Set "filter" "phd" }} | ||
|
||
<!-- | ||
<div class="list-preamble"> | ||
{{ .Content }} | ||
<div class="btn-group" role="group" aria-label="Job types"> | ||
<button type="button" class="btn btn-secondary">Phd</button> | ||
<button type="button" class="btn btn-secondary">Postdoc</button> | ||
<button type="button" class="btn btn-secondary">Internship</button> | ||
<button type="button" class="btn btn-secondary">Engineer</button> | ||
</div> | ||
</div> | ||
<ul class="list-unstyled page-list"> | ||
{{ range .Pages }} | ||
{{ if not .Params.private and eq .Params.position "Phd" }} | ||
<li> {{ .Render "item" }} </li> | ||
<button type="button" class="btn btn-secondary" onclick={{ print "coucou" }} >Phd</button> | ||
<button type="button" class="btn btn-secondary" onclick={{ $data.Set "filter" "phd" }} >Postdoc</button> | ||
<button type="button" class="btn btn-secondary" onclick={{ $data.Set "filter" "internship" }} >Internship</button> | ||
<button type="button" class="btn btn-secondary" onclick={{ $data.Set "filter" "phd" }} >Engineer</button> | ||
</div> | ||
</div> --> | ||
|
||
{{ range (.Pages.GroupByParam "position").Reverse }} | ||
<ul class="list-unstyled page-list"> | ||
{{ range (.Pages.ByParam "starts").Reverse }} | ||
{{ if and (not .Params.private) }} | ||
<li> {{ .Render "item" }} </li> | ||
{{ end }} | ||
{{ end }} | ||
</ul> | ||
{{ end }} | ||
</ul> | ||
{{ end }} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.