Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions content/home/hero.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ cta:
cta_alt:
url: https://gyselax.github.io/gyselalibxx/
label: View Documentation
cta_gyselax:
url: https://gitlab.maisondelasimulation.fr/gysela-developpers/Gysela-X
label: Gysela-X++
icon: gitlab
cta_gysela:
url: https://gitlab.maisondelasimulation.fr/gysela-developpers/Gysela
label: GYSELA
icon: gitlab
---

The codes of the Gysela-X project model turbulence in tokamak plasmas.
105 changes: 105 additions & 0 deletions layouts/partials/widgets/hero.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{{ $ := .root }}
{{ $page := .page }}
{{ $bg := $page.Params.design.background }}

{{ if $page.Params.hero_media }}
<div class="row">
<div class="col-12 col-md-6 order-md-1 text-center text-md-left">
{{ end }}

<h1 class="hero-title">
{{ with $page.Title }}{{ . | markdownify }}{{ end }}
</h1>

{{ with $page.Content }}
<div class="hero-lead">{{ . }}</div>
{{ end }}

{{/* Call-to-action link */}}
{{ if $page.Params.cta.url }}
{{ $pack := or $page.Params.cta.icon_pack "fas" }}
{{ $pack_prefix := $pack }}
{{ if in (slice "fab" "fas" "far" "fal") $pack }}
{{ $pack_prefix = "fa" }}
{{ end }}
{{ $link := $page.Params.cta.url }}
{{ $scheme := (urls.Parse $link).Scheme }}
{{ $target := "" }}
{{ if not $scheme }}
{{ $link = $link | relLangURL }}
{{ else if in (slice "http" "https") $scheme }}
{{ $target = "target=\"_blank\" rel=\"noopener\"" }}
{{ end }}
<p class="cta-btns">
<a href="{{ $link | safeURL }}" {{ $target | safeHTMLAttr }} class="btn {{if $bg.text_color_light}}btn-light{{else}}btn-primary{{end}} btn-lg mb-3 mb-md-1">{{ if $page.Params.cta.icon }}<i class="{{ $pack }} {{ $pack_prefix }}-{{ $page.Params.cta.icon }} pr-1" aria-hidden="true"></i>{{end}}{{ $page.Params.cta.label | markdownify | emojify | safeHTML }}<sup style="visibility:hidden">*</sup></a>

{{/* Alternative Call-to-action link */}}
{{ if $page.Params.cta_alt.url }}
{{ $link := $page.Params.cta_alt.url }}
{{ $scheme := (urls.Parse $link).Scheme }}
{{ $target := "" }}
{{ if not $scheme }}
{{ $link = $link | relLangURL }}
{{ else if in (slice "http" "https") $scheme }}
{{ $target = "target=\"_blank\" rel=\"noopener\"" }}
{{ end }}
<a href="{{ $link | safeURL }}" {{ $target | safeHTMLAttr }} class="hero-cta-alt btn-lg pl-md-4">{{ $page.Params.cta_alt.label | markdownify | emojify | safeHTML }} <i class="fas fa-angle-right"></i></a>
{{ end }}
</p>
{{ end }}

{{/* Second call-to-action link */}}
{{ if $page.Params.cta_gyselax.url }}
{{ $pack := or $page.Params.cta.icon_pack "fas" }}
{{ $pack_prefix := $pack }}
{{ if in (slice "fab" "fas" "far" "fal") $pack }}
{{ $pack_prefix = "fa" }}
{{ end }}
{{ $link := $page.Params.cta_gyselax.url }}
{{ $scheme := (urls.Parse $link).Scheme }}
{{ $target := "" }}
{{ if in (slice "http" "https") $scheme }}
{{ $target = "target=\"_blank\" rel=\"noopener\"" }}
{{ end }}
<p class="cta-gyselax-btns">
<a href="{{ $page.Params.cta_gyselax.url | safeURL }}" {{ $target | safeHTMLAttr }} class="btn {{if $bg.text_color_light}}btn-light{{else}}btn-primary{{end}} btn-lg mb-3 mb-md-1 mr-4">{{ if $page.Params.cta_gyselax.icon }}<i class="{{ $pack }} {{ $pack_prefix }}-{{ $page.Params.cta_gyselax.icon }} pr-1" aria-hidden="true"></i>{{end}}{{ $page.Params.cta_gyselax.label | markdownify | emojify | safeHTML }}<sup>*</sup></a>
<a href="{{ $page.Params.cta_gysela.url | safeURL }}" {{ $target | safeHTMLAttr }} class="btn {{if $bg.text_color_light}}btn-light{{else}}btn-primary{{end}} btn-lg mb-3 mb-md-1">{{ if $page.Params.cta_gysela.icon }}<i class="{{ $pack }} {{ $pack_prefix }}-{{ $page.Params.cta_gysela.icon }} pr-1" aria-hidden="true"></i>{{end}}{{ $page.Params.cta_gysela.label | markdownify | emojify | safeHTML }}<sup>*</sup></a>
</p>
<p> *Please contact a member of team to get access to the GitLab repositories.</p>
{{ end }}
Comment on lines +51 to +69

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the new code in this file


{{/* Call-to-action note */}}
{{ with $page.Params.cta_note }}
<p class="hero-note text-muted mb-3 mb-md-1">
{{ .label | markdownify | emojify | safeHTML }}
</p>
{{ end }}

{{/* Hero image */}}
{{ if $page.Params.hero_media }}
</div>
<div class="col-12 mx-auto col-md-6 order-md-2 hero-media">
{{ $image := $page.Parent.Resources.GetMatch $page.Params.hero_media }}
{{ if $image }}
{{ $legacy_img := $image.Resize "400x" }}
{{ $img_src := "" }}
{{ $img_src_set := slice }}
{{ $widths := slice 1200 800 400 }}

{{ range $widths }}
{{ $src_link := ($image.Resize (printf "%dx" .)).RelPermalink }}
{{ if eq $img_src "" }}
{{ $img_src = $src_link }}
{{ end }}
{{ $img_src_set = $img_src_set | append (printf "%s %dw" $src_link .) }}
{{ end }}
{{ $img_src_set = delimit $img_src_set "," }}

<img src="{{ $legacy_img.RelPermalink }}" srcset="{{ $img_src_set }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt="{{ $page.Title }}">
{{ else }}
{{ $media_dir := $.Scratch.Get "media_dir" }}
<img src="{{ printf "%s/%s" $media_dir $page.Params.hero_media | relURL }}" alt="{{ $page.Title }}">
{{ end }}
</div>
</div>
{{ end }}
Loading