Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Alexandre.Meyer/m1if37-animation
  • Alexandre.Meyer/m2-apprentissage-profond-image
  • Alexandre.Meyer/m2-animation
  • Alexandre.Meyer/hugo-web-minimal
  • Alexandre.Meyer/lifami
  • Alexandre.Meyer/lifapcd
  • Alexandre.Meyer/www
  • Alexandre.Meyer/lifstage
8 results
Show changes
Showing
with 0 additions and 388 deletions
{{ define "load_page_assets" }}
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ $paginator := .Paginate $pages }}
{{ range $paginator.Pages }}
{{ with .Content }}{{ end }}
{{ $page_css := .Scratch.Get "css" }}
{{ with $page_css }}
{{ $css_list := $.Scratch.Get "css" }}
{{ . | merge $css_list | $.Scratch.Set "css" }}
{{ end }}
{{ $page_js := .Scratch.Get "js" }}
{{ with $page_js }}
{{ $js_list := $.Scratch.Get "js" }}
{{ . | merge $js_list | $.Scratch.Set "js" }}
{{ end }}
{{ end }}
{{ $paginator | .Scratch.Set "paginator" }}
{{ end }}
{{ define "main" }}
{{ $paginator := .Scratch.Get "paginator" }}
{{ range $paginator.Pages }}
<article>
{{ partial "heading.html" . }}
{{ if site.Params.summaries }}
{{ .Summary }}
{{ if .Truncated }}
<p>
<a class="u-clickable" href="{{ .RelPermalink }}">Read More…</a>
</p>
{{ end }}
{{ else }}
{{ .Content }}
{{ end }}
{{ partial "tags.html" . }}
</article>
{{ with site.Params.divider }}
<div class="Divider"></div>
{{ end }}
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}
{{ define "main" }}
{{ partial "heading.html" . }}
{{ .Content }}
{{ range .Pages.GroupByPublishDate "2006" }}
<h3>{{ .Key }}</h3>
<ul>
{{ range .Pages }}
<li>
{{ .PublishDate.Format "2006-01-02" }} – <a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
{{- $base_xml := resources.Get "xml/base.tpl.xml" | resources.ExecuteAsTemplate "xml/base.xml" . | minify }}
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{- $limit := .Site.Config.Services.RSS.Limit }}
{{- if ge $limit 1 }}
{{- $pages = $pages | first $limit }}
{{- end }}
{{- safeHTML `<?xml version="1.0" encoding="utf-8" ?>` }}
{{ printf `<?xml-stylesheet type="text/xsl" href=%q ?>` $base_xml.Permalink | safeHTML }}
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ if eq .Title site.Title }}{{ site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ site.Title }}{{ end }}</title>
<link>{{ .Permalink }}</link>
<description>Recent content {{ if ne .Title site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ site.Title }}</description>
<generator>Hugo -- gohugo.io</generator>{{ with site.LanguageCode }}
<language>{{ . }}</language>{{ end }}{{ with site.Author.email }}
<managingEditor>{{ . }}{{ with site.Author.name }} ({{ . }}){{ end }}</managingEditor>{{ end }}{{ with site.Author.email }}
<webMaster>{{ . }}{{ with site.Author.name }} ({{ . }}){{ end }}</webMaster>{{ end }}{{ with site.Copyright }}
<copyright>{{ . }}</copyright>{{ end }}{{ with .Date | default nil }}
<lastBuildDate>{{ .Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}{{ with .OutputFormats.Get "RSS" }}
{{ printf `<atom:link href=%q rel="self" type=%q />` .Permalink .MediaType | safeHTML }}{{ end }}{{ range $pages }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>{{ with .PublishDate | default nil }}
<pubDate>{{ .Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>{{ end }}{{ with site.Author.email }}
<author>{{ . }}{{ with site.Author.name }} ({{ . }}){{ end }}</author>{{ end }}
<guid>{{ .Permalink }}</guid>
<description>{{ html .Content }}</description>
</item>{{ end }}
</channel>
</rss>
{{ define "main" }}
<article>
{{ partial "heading.html" . }}
{{ .Content }}
{{ partial "tags.html" . }}
{{ partial "comments.html" . }}
</article>
{{ end }}
{{ define "main" }}
{{ partial "heading.html" . }}
{{ .Content }}
<ul class="Tags">
{{ range .Pages }}
<li class="Tags-item u-background">
<a class="Tags-link u-clickable" href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
{{ range .Scratch.GetSortedMapValues "css" }}
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
{{ end }}
{{ range .Scratch.GetSortedMapValues "js" }}
<script defer src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
{{ end }}
\ No newline at end of file
<nav class="u-background">
<div class="u-wrapper">
<ul class="Banner">
<li class="Banner-item Banner-item--title">
<a class="Banner-link u-clickable" href="{{ relURL nil }}">{{ site.Title }}</a>
</li>
{{ range site.Menus.nav }}
<li class="Banner-item">
<a class="Banner-link u-clickable" href="{{ relURL .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</div>
</nav>
\ No newline at end of file
{{ with site.Params.utterances }}
{{ if $.Type | in site.Params.mainSections | and .repo }}
<script src="https://utteranc.es/client.js" repo="{{ .repo }}" issue-term="{{ .issueterm }}" theme="{{ .theme }}" crossorigin="anonymous" async></script>
{{end}}
{{end}}
\ No newline at end of file
{{ with site.Params.footer }}
<footer class="Footer">
<div class="u-wrapper">
<div class="u-padding">
{{ safeHTML . }}
</div>
</div>
</footer>
{{ end }}
\ No newline at end of file
<header class="Heading">
<h2 class="Heading-title">
<a class="Heading-link u-clickable" href="{{ .RelPermalink }}" rel="bookmark">{{ .Title }}</a>
</h2>
{{ with .PublishDate | default nil }}
<time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}">
{{- .Format "2 January, 2006" -}}
</time>
{{ end }}
</header>
\ No newline at end of file
<link rel="canonical" href="{{ .RelPermalink }}">
{{ range .AlternativeOutputFormats }}
{{ printf "<link rel=%q type=%q href=%q title=%q>" .Rel .MediaType .RelPermalink site.Title | safeHTML }}
{{ end }}
\ No newline at end of file
{{ $base_css := resources.Get "css/base.tpl.css" | resources.ExecuteAsTemplate "css/base.css" . }}
{{ $site_css := $base_css }}
{{ with site.Params.css }}
{{ $css_list := slice $site_css }}
{{ range . }}
{{ $custom_css := resources.Get . }}
{{ $css_list = $css_list | append $custom_css }}
{{ end }}
{{ $site_css = $css_list | resources.Concat "css/base.css" }}
{{ end }}
{{ minify $site_css | fingerprint | .Page.Scratch.SetInMap "css" "base" }}
{{ with site.Params.js }}
{{ $js_list := slice }}
{{ range . }}
{{ $custom_js := resources.Get . }}
{{ $js_list = $js_list | append $custom_js }}
{{ end }}
{{ $site_js := $js_list | resources.Concat "js/base.js" }}
{{ minify $site_js | fingerprint | $.Page.Scratch.SetInMap "js" "base" }}
{{ end }}
\ No newline at end of file
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ with .Description }}
<meta name="description" content="{{ . }}">
{{ else }}
{{ if .IsPage }}
<meta name="description" content="{{ .Summary }}">
{{ else }}
{{ with site.Params.description }}
<meta name="description" content="{{ . }}">
{{ end }}
{{ end }}
{{ end }}
{{ if site.Params.schema }}
{{ template "_internal/schema.html" . }}
{{ end }}
{{ if site.Params.opengraph }}
{{ template "_internal/opengraph.html" . }}
{{ end }}
{{ if site.Params.twittercards }}
{{ template "_internal/twitter_cards.html" . }}
{{ end }}
{{ hugo.Generator }}
\ No newline at end of file
{{ $paginator := .Scratch.Get "paginator" }}
{{ if gt $paginator.TotalPages 1 }}
<nav>
{{ with $paginator.Next }}
<a class="Pagination u-clickable" href="{{ .URL }}" rel="prev">« Previous</a>
{{ end }}
{{ with $paginator.Prev }}
<a class="Pagination Pagination--right u-clickable" href="{{ .URL }}" rel="next">Next »</a>
{{ end }}
</nav>
{{ end }}
\ No newline at end of file
{{ $taxonomy_list := slice }}
{{ range $taxonomy, $_ := site.Taxonomies }}
{{ $taxonomy_list = $taxonomy_list | append $taxonomy }}
{{ end }}
{{ $taxonomy_is_used_list := apply $taxonomy_list "isset" .Params "." }}
{{ if true | in $taxonomy_is_used_list }}
<footer>
{{ range $taxonomy := $taxonomy_list }}
{{ if isset $.Params $taxonomy }}
<ul class="Tags">
{{ range $.GetTerms $taxonomy }}
<li class="Tags-item u-background">
<a class="Tags-link u-clickable" href="{{ .RelPermalink }}" rel="tag">{{ .LinkTitle }}</a>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
</footer>
{{ end }}
\ No newline at end of file
<title>
{{- if eq .Title site.Title -}}
{{ site.Title }}
{{- else -}}
{{ with .Title }}{{ . }} | {{ end }}{{ site.Title }}
{{- end -}}
</title>
\ No newline at end of file
{{ resources.Get "css/contact.css" | minify | fingerprint | .Page.Scratch.SetInMap "css" "contact" }}
<form class="Contact" name="contact" method="POST" data-netlify="true"{{ if site.Params.netlify.honeypot }} data-netlify-honeypot="bot"{{ end }}{{ if site.Params.netlify.recaptcha }} data-netlify-recaptcha="true"{{ end }}{{ with .Get 0 }} action="{{ . }}"{{ end }}>
<ul class="Contact-group">
{{ if site.Params.netlify.honeypot }}
<li class="Contact-hidden">
<label>Don’t fill this out if you're human:</label>
<input name="bot">
</li>
{{ end }}
<li class="Contact-item">
<label class="Contact-label" for="Contact-name">Name:</label>
<input class="Contact-input" id="Contact-name" type="text" name="name" autofocus>
</li>
<li class="Contact-item">
<label class="Contact-label" for="Contact-email">Email:</label>
<input class="Contact-input" id="Contact-email" type="email" name="email">
</li>
<li class="Contact-item">
<label class="Contact-label" for="Contact-subject">Subject:</label>
<input class="Contact-input" id="Contact-subject" type="text" name="subject">
</li>
<li class="Contact-item">
<label class="Contact-label" for="Contact-message">Message:</label>
<textarea class="Contact-input Contact-input--textbox" id="Contact-message" name="message"></textarea>
</li>
<li class="Contact-item">
<button class="Contact-button" type="submit">Send</button>
</li>
</ul>
{{ if site.Params.netlify.recaptcha }}<div data-netlify-recaptcha="true"></div>{{ end }}
</form>
{{ resources.Get "css/soundcloud.css" | minify | fingerprint | .Page.Scratch.SetInMap "css" "soundcloud" }}
{{ resources.Get "js/soundcloud.js" | minify | fingerprint | .Page.Scratch.SetInMap "js" "soundcloud" }}
<div class="Soundcloud" data-id="{{ .Get 0 }}"></div>
name = "Hugo Flex"
license = "Apache-2.0"
licenselink = "https://github.com/de-souza/hugo-flex/blob/master/LICENSE"
description = "A lightweight Hugo theme leveraging CSS Flexbox"
homepage = "https://github.com/de-souza/hugo-flex/"
demosite = "https://de-souza.github.io/hugo-flex/"
tags = ["responsive", "minimal", "flexbox", "no-javascript"]
features = ["posts"]
min_version = "0.65"
[author]
name = "Léo De Souza"
homepage = "https://github.com/de-souza/"
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.102.3
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
cd exampleSite
hugo --minify --baseURL ${{ steps.pages.outputs.base_url }} --themesDir ../..
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./exampleSite/public
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.pages.outputs.base_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1