update
This commit is contained in:
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
.quarto/
|
||||||
|
_site/
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
/.quarto/
|
8
_extensions/shafayetShafee/collapse-callout/_extension.yml
Executable file
8
_extensions/shafayetShafee/collapse-callout/_extension.yml
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
title: Make the callout blocks collapsible on `html` output format
|
||||||
|
author: Shafayet Khan Shafee
|
||||||
|
version: 1.0.0
|
||||||
|
quarto-required: ">=1.2.0"
|
||||||
|
contributes:
|
||||||
|
filters:
|
||||||
|
- collapse-callout.lua
|
||||||
|
|
56
_extensions/shafayetShafee/collapse-callout/collapse-callout.lua
Executable file
56
_extensions/shafayetShafee/collapse-callout/collapse-callout.lua
Executable file
@@ -0,0 +1,56 @@
|
|||||||
|
-- defining all possible callout types
|
||||||
|
local callouts_all = {
|
||||||
|
caution = 'callout-caution',
|
||||||
|
important = 'callout-important',
|
||||||
|
tip = 'callout-tip',
|
||||||
|
note = 'callout-note',
|
||||||
|
warning = 'callout-warning'
|
||||||
|
}
|
||||||
|
|
||||||
|
-- function for adding collapse attributes to callout divs
|
||||||
|
function collapse_callout(callouts, bool)
|
||||||
|
local callout_filter = {
|
||||||
|
Div = function(el)
|
||||||
|
for key, val in pairs(callouts) do
|
||||||
|
if el.classes:includes(val) then
|
||||||
|
if el.attributes["collapse"] == nil then
|
||||||
|
el.attributes["collapse"] = bool
|
||||||
|
return el
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
|
return callout_filter
|
||||||
|
end
|
||||||
|
|
||||||
|
-- make changes to input file if the format is html
|
||||||
|
if quarto.doc.isFormat("html:js") then
|
||||||
|
function Pandoc (doc)
|
||||||
|
local collapse = doc.meta['collapse-callout']
|
||||||
|
if not collapse then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if collapse.all == false then
|
||||||
|
return doc:walk(collapse_callout(callouts_all,'false'))
|
||||||
|
elseif collapse.all == true then
|
||||||
|
return doc:walk(collapse_callout(callouts_all, 'true'))
|
||||||
|
else
|
||||||
|
filtered_doc = doc
|
||||||
|
for k, v in pairs{"caution", "important", "tip", "note", "warning"} do
|
||||||
|
if collapse[v] == true then
|
||||||
|
filtered_doc = filtered_doc:walk(
|
||||||
|
collapse_callout({callouts_all[v]}, 'true')
|
||||||
|
)
|
||||||
|
elseif collapse[v] == false then
|
||||||
|
filtered_doc = filtered_doc:walk(
|
||||||
|
collapse_callout({callouts_all[v]}, 'false')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return filtered_doc
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
end
|
BIN
_images/logo_FEUTRE.png
Normal file
BIN
_images/logo_FEUTRE.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 172 KiB |
20
_propositions.qmd
Executable file
20
_propositions.qmd
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: "Propositions"
|
||||||
|
listing:
|
||||||
|
contents: posts/propositions
|
||||||
|
sort: "date desc"
|
||||||
|
type: default
|
||||||
|
categories: false
|
||||||
|
sort-ui: false
|
||||||
|
filter-ui: false
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
||||||
|
# Propositions portées par la FEUTRE
|
||||||
|
|
||||||
|
|
||||||
|
La
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
- source: project
|
- source: project
|
||||||
quarto-pub:
|
quarto-pub:
|
||||||
- id: 911a358d-f6ed-489e-8260-86fd650168dc
|
- id: 911a358d-f6ed-489e-8260-86fd650168dc
|
||||||
url: 'https://osk42.quarto.pub/feutre'
|
url: https://osk42.quarto.pub/feutre
|
||||||
|
23
_quarto.yml
23
_quarto.yml
@@ -9,10 +9,25 @@ website:
|
|||||||
logo: "_images/logo_FEUTRE.png"
|
logo: "_images/logo_FEUTRE.png"
|
||||||
logo-alt: "FEUTRE"
|
logo-alt: "FEUTRE"
|
||||||
right:
|
right:
|
||||||
- href: posts/propositions.qmd
|
- href: posts/distributions_alimentaires/distributions_alimentaires.qmd
|
||||||
text: "Propositions"
|
text: "Distributions alimentaires"
|
||||||
- href: posts/conseils_de_l_universite/index.qmd
|
- text: Nous contacter
|
||||||
text: "Conseils de l'Université"
|
menu:
|
||||||
|
- text: Email
|
||||||
|
icon: envelope
|
||||||
|
href: mailto:feutrebloistours@gmail.com
|
||||||
|
- text: Instagram
|
||||||
|
icon: instagram
|
||||||
|
href: https://www.instagram.com/feutre_ut/
|
||||||
|
target: _blank # open in new tab
|
||||||
|
- text: Discord
|
||||||
|
icon: discord
|
||||||
|
href: https://discord.gg/jYhp33SZ9j
|
||||||
|
target: _blank # open in new tab
|
||||||
|
# - href: posts/propositions.qmd
|
||||||
|
# text: "Propositions"
|
||||||
|
# - href: posts/conseils_de_l_universite/index.qmd
|
||||||
|
# text: "Conseils de l'Université"
|
||||||
|
|
||||||
# show image previews
|
# show image previews
|
||||||
twitter-card:
|
twitter-card:
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Commission Formation et Vie Universitaire (CFVU)</title>
|
<title>Commission Formation et Vie Universitaire (CFVU) – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -36,12 +36,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -72,11 +72,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../styles.css">
|
<link rel="stylesheet" href="../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Commission Formation et Vie Universitaire (CFVU)">
|
<meta property="og:title" content="Commission Formation et Vie Universitaire (CFVU) – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Commission Formation et Vie Universitaire (CFVU)">
|
<meta name="twitter:title" content="Commission Formation et Vie Universitaire (CFVU) – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -97,18 +97,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../posts/propositions.html">
|
<a class="nav-link" href="../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -339,18 +357,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -382,7 +389,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -390,7 +417,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -487,7 +514,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Conseil de l’UFR de Sciences et Techniques</title>
|
<title>Conseil de l’UFR de Sciences et Techniques – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -36,12 +36,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -72,11 +72,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../../styles.css">
|
<link rel="stylesheet" href="../../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Conseil de l’UFR de Sciences et Techniques">
|
<meta property="og:title" content="Conseil de l’UFR de Sciences et Techniques – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Conseil de l’UFR de Sciences et Techniques">
|
<meta name="twitter:title" content="Conseil de l’UFR de Sciences et Techniques – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -97,18 +97,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../../posts/propositions.html">
|
<a class="nav-link" href="../../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -380,18 +398,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -423,7 +430,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -431,7 +458,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -528,7 +555,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Conseils de composantes</title>
|
<title>Conseils de composantes – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -38,12 +38,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -101,7 +101,7 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>
|
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@@ -132,11 +132,11 @@ window.Quarto = {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../../styles.css">
|
<link rel="stylesheet" href="../../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Conseils de composantes">
|
<meta property="og:title" content="Conseils de composantes – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Conseils de composantes">
|
<meta name="twitter:title" content="Conseils de composantes – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -157,18 +157,36 @@ window.Quarto = {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../../posts/propositions.html">
|
<a class="nav-link" href="../../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -200,7 +218,7 @@ window.Quarto = {
|
|||||||
<!-- margin-sidebar -->
|
<!-- margin-sidebar -->
|
||||||
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
|
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
|
||||||
|
|
||||||
<h5 class="quarto-listing-category-title">Catégories</h5><div class="quarto-listing-category category-default"><div class="category" data-category="">Tous <span class="quarto-category-count">(1)</span></div><div class="category" data-category="conseil-de-composante">conseil-de-composante <span class="quarto-category-count">(1)</span></div></div></div>
|
<h5 class="quarto-listing-category-title">Catégories</h5><div class="quarto-listing-category category-default"><div class="category" data-category="">Tous <span class="quarto-category-count">(1)</span></div><div class="category" data-category="Y29uc2VpbC1kZS1jb21wb3NhbnRl">conseil-de-composante <span class="quarto-category-count">(1)</span></div></div></div>
|
||||||
<!-- main -->
|
<!-- main -->
|
||||||
<main class="content quarto-banner-title-block column-page-left" id="quarto-document-content">
|
<main class="content quarto-banner-title-block column-page-left" id="quarto-document-content">
|
||||||
|
|
||||||
@@ -230,7 +248,7 @@ Liste des conseils de composantes
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="list">
|
<tbody class="list">
|
||||||
<tr data-index="0" data-categories="conseil-de-composante" data-listing-file-modified-sort="1699822656490" data-listing-reading-time-sort="1" data-listing-word-count-sort="151" data-listing-title-sort="Conseil de l'UFR de Sciences et Techniques" data-listing-filename-sort="conseil_de_l_UFR_sciences_et_techniques.qmd" onclick="href = this.querySelector('a').getAttribute('href');
|
<tr data-index="0" data-categories="Y29uc2VpbC1kZS1jb21wb3NhbnRl" data-listing-file-modified-sort="1699822656490" data-listing-reading-time-sort="1" data-listing-word-count-sort="151" data-listing-title-sort="Conseil de l'UFR de Sciences et Techniques" data-listing-filename-sort="conseil_de_l_UFR_sciences_et_techniques.qmd" onclick="href = this.querySelector('a').getAttribute('href');
|
||||||
if (href) { window.location=href ; return false; }">
|
if (href) { window.location=href ; return false; }">
|
||||||
<td>
|
<td>
|
||||||
<a href="../../../posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.html" class="title listing-title">Conseil de l’UFR de Sciences et Techniques</a>
|
<a href="../../../posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.html" class="title listing-title">Conseil de l’UFR de Sciences et Techniques</a>
|
||||||
@@ -421,18 +439,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -464,7 +471,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -472,7 +499,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -569,7 +596,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Harmonie Guérin</title>
|
<title>Harmonie Guérin – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -36,12 +36,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -72,11 +72,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../styles.css">
|
<link rel="stylesheet" href="../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Harmonie Guérin">
|
<meta property="og:title" content="Harmonie Guérin – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Harmonie Guérin">
|
<meta name="twitter:title" content="Harmonie Guérin – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -97,18 +97,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../posts/propositions.html">
|
<a class="nav-link" href="../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -336,18 +354,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -379,7 +386,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -387,7 +414,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -484,7 +511,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Adrian Lagasse</title>
|
<title>Adrian Lagasse – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -36,12 +36,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -72,11 +72,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../styles.css">
|
<link rel="stylesheet" href="../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Adrian Lagasse">
|
<meta property="og:title" content="Adrian Lagasse – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Adrian Lagasse">
|
<meta name="twitter:title" content="Adrian Lagasse – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -97,18 +97,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../posts/propositions.html">
|
<a class="nav-link" href="../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -331,18 +349,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -374,7 +381,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -382,7 +409,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -479,7 +506,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,13 +2,13 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
<meta name="description" content="premier nom de la L.I.S.T.E.">
|
<meta name="description" content="premier nom de la L.I.S.T.E.">
|
||||||
|
|
||||||
<title>FEUTRE - Andreas Mulard</title>
|
<title>Andreas Mulard – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -37,12 +37,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -73,11 +73,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../styles.css">
|
<link rel="stylesheet" href="../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Andreas Mulard">
|
<meta property="og:title" content="Andreas Mulard – FEUTRE">
|
||||||
<meta property="og:description" content="premier nom de la L.I.S.T.E.">
|
<meta property="og:description" content="premier nom de la L.I.S.T.E.">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Andreas Mulard">
|
<meta name="twitter:title" content="Andreas Mulard – FEUTRE">
|
||||||
<meta name="twitter:description" content="premier nom de la L.I.S.T.E.">
|
<meta name="twitter:description" content="premier nom de la L.I.S.T.E.">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -98,18 +98,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../posts/propositions.html">
|
<a class="nav-link" href="../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -337,18 +355,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -380,7 +387,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -388,7 +415,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -485,7 +512,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,13 +2,13 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
<meta name="description" content="Passionné d’informatique et de mathématiques">
|
<meta name="description" content="Passionné d’informatique et de mathématiques">
|
||||||
|
|
||||||
<title>FEUTRE - Oscar Plaisant</title>
|
<title>Oscar Plaisant – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -37,12 +37,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -73,11 +73,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../styles.css">
|
<link rel="stylesheet" href="../../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Oscar Plaisant">
|
<meta property="og:title" content="Oscar Plaisant – FEUTRE">
|
||||||
<meta property="og:description" content="Passionné d’informatique et de mathématiques">
|
<meta property="og:description" content="Passionné d’informatique et de mathématiques">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Oscar Plaisant">
|
<meta name="twitter:title" content="Oscar Plaisant – FEUTRE">
|
||||||
<meta name="twitter:description" content="Passionné d’informatique et de mathématiques">
|
<meta name="twitter:description" content="Passionné d’informatique et de mathématiques">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -98,18 +98,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../../posts/propositions.html">
|
<a class="nav-link" href="../../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -152,21 +170,16 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Je étudiant en deuxième année d’Informatique et de mathématiques, et passionné par ces deux sujets.</p>
|
<p>Je étudiant en troisième année de licence de mathématiques et j’ai également une licence d’informatique.</p>
|
||||||
<p>J’étudie principalement au campus de Blois, et c’est pour essayer de représenter les voix des étudiants Blaisois que j’ai voulu être dans la L.I.S.T.E.</p>
|
<p>J’ai étudié 3 ans au campus de Blois, et j’habite actuellement à Tours, je cherche donc à représenter au mieux les étudiant·es de tous les campus de l’université.</p>
|
||||||
<p>Je cherche également à défendre l’indépendance numérique, ainsi que l’égalité entre les étudiants.</p>
|
<p>Je cherche à défendre l’égalité entre les étudiant·es, je suis convaincu que tout le monde devrait avoir le droit de faire des études universitaires, et que les droits des étudiant·es doivent être défendus.</p>
|
||||||
<p>C’est moi qui m’occupe de ce site internet !</p>
|
|
||||||
<div class="quarto-figure quarto-figure-center">
|
|
||||||
<figure class="figure">
|
|
||||||
<p><a href="https://osk42.quarto.pub"><img src="_images/OsKaR.gif" class="img-fluid quarto-figure quarto-figure-center figure-img" style="width:50.0%"></a></p>
|
|
||||||
</figure>
|
|
||||||
</div>
|
|
||||||
<section id="auto-promotion" class="level2 callout-info">
|
<section id="auto-promotion" class="level2 callout-info">
|
||||||
<h2 class="anchored" data-anchor-id="auto-promotion">Auto-promotion</h2>
|
<h2 class="anchored" data-anchor-id="auto-promotion">Auto-promotion</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>mon blog : <a href="https://osk42.quarto.pub/">OSK42</a></li>
|
<li>mon blog : <a href="https://osk42.quarto.pub/">OSK42</a></li>
|
||||||
<li>ma chaîne youtube : <a href="https://www.youtube.com/@oskar31415">OsKaR</a></li>
|
<li>ma chaîne youtube : <a href="https://www.youtube.com/@oskar31415">OsKaR</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>Je m’occupe aussi de ce site internet !</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
@@ -351,18 +364,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -394,7 +396,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -402,7 +424,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -499,7 +521,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
@@ -2,12 +2,12 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="generator" content="quarto-1.4.555">
|
<meta name="generator" content="quarto-1.6.42">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||||
|
|
||||||
|
|
||||||
<title>FEUTRE - Représentation de tous les étudiants</title>
|
<title>Représentation de tous les étudiants – FEUTRE</title>
|
||||||
<style>
|
<style>
|
||||||
code{white-space: pre-wrap;}
|
code{white-space: pre-wrap;}
|
||||||
span.smallcaps{font-variant: small-caps;}
|
span.smallcaps{font-variant: small-caps;}
|
||||||
@@ -36,12 +36,12 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
|
<script src="../site_libs/quarto-html/tippy.umd.min.js"></script>
|
||||||
<script src="../site_libs/quarto-html/anchor.min.js"></script>
|
<script src="../site_libs/quarto-html/anchor.min.js"></script>
|
||||||
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
<link href="../site_libs/quarto-html/tippy.css" rel="stylesheet">
|
||||||
<link href="../site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-2f5df379a58b258e96c21c0638c20c03.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-text-highlighting-styles">
|
||||||
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-b53751a350365c71b6c909e95f209ed1.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
|
||||||
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
|
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
|
||||||
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
|
||||||
<link href="../site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
<link href="../site_libs/bootstrap/bootstrap-d1b12f2568ecbe55642fee6aa00bd082.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
|
||||||
<link href="../site_libs/bootstrap/bootstrap-dark.min.css" rel="prefetch" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
<link href="../site_libs/bootstrap/bootstrap-dark-b2511bcbb01c2159fd96a78deb42ffd9.min.css" rel="prefetch" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
|
||||||
<script id="quarto-search-options" type="application/json">{
|
<script id="quarto-search-options" type="application/json">{
|
||||||
"location": "navbar",
|
"location": "navbar",
|
||||||
"copy-button": false,
|
"copy-button": false,
|
||||||
@@ -72,11 +72,11 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../styles.css">
|
<link rel="stylesheet" href="../styles.css">
|
||||||
<meta property="og:title" content="FEUTRE - Représentation de tous les étudiants">
|
<meta property="og:title" content="Représentation de tous les étudiants – FEUTRE">
|
||||||
<meta property="og:description" content="">
|
<meta property="og:description" content="">
|
||||||
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
<meta property="og:image" content="https://osk42.quarto.pub/feurte/_images/logo_FEUTRE.png">
|
||||||
<meta property="og:site_name" content="FEUTRE">
|
<meta property="og:site_name" content="FEUTRE">
|
||||||
<meta name="twitter:title" content="FEUTRE - Représentation de tous les étudiants">
|
<meta name="twitter:title" content="Représentation de tous les étudiants – FEUTRE">
|
||||||
<meta name="twitter:description" content="">
|
<meta name="twitter:description" content="">
|
||||||
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
<meta name="twitter:image" content="https://osk42.quarto.pub/feutre/_images/logo_FEUTRE.png">
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
@@ -97,18 +97,36 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="quarto-search" class="" title="Recherche"></div>
|
<div id="quarto-search" class="" title="Recherche"></div>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Basculer la navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
<ul class="navbar-nav navbar-nav-scroll ms-auto">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="../posts/propositions.html">
|
<a class="nav-link" href="../posts/distributions_alimentaires/distributions_alimentaires.html">
|
||||||
<span class="menu-text">Propositions</span></a>
|
<span class="menu-text">Distributions alimentaires</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item dropdown ">
|
||||||
<a class="nav-link" href="../posts/conseils_de_l_universite/index.html">
|
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-nous-contacter" role="link" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<span class="menu-text">Conseils de l’Université</span></a>
|
<span class="menu-text">Nous contacter</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="nav-menu-nous-contacter">
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="mailto:feutrebloistours@gmail.com"><i class="bi bi-envelope" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Email</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://www.instagram.com/feutre_ut/" target="_blank"><i class="bi bi-instagram" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Instagram</span></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="dropdown-item" href="https://discord.gg/jYhp33SZ9j" target="_blank"><i class="bi bi-discord" role="img">
|
||||||
|
</i>
|
||||||
|
<span class="dropdown-text">Discord</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> <!-- /navcollapse -->
|
</div> <!-- /navcollapse -->
|
||||||
@@ -332,18 +350,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const clipboard = new window.ClipboardJS('.code-copy-button', {
|
const onCopySuccess = function(e) {
|
||||||
text: function(trigger) {
|
|
||||||
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
|
||||||
for (const childEl of codeEl.children) {
|
|
||||||
if (isCodeAnnotation(childEl)) {
|
|
||||||
childEl.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return codeEl.innerText;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
clipboard.on('success', function(e) {
|
|
||||||
// button target
|
// button target
|
||||||
const button = e.trigger;
|
const button = e.trigger;
|
||||||
// don't keep focus
|
// don't keep focus
|
||||||
@@ -375,7 +382,27 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
// clear code selection
|
// clear code selection
|
||||||
e.clearSelection();
|
e.clearSelection();
|
||||||
|
}
|
||||||
|
const getTextToCopy = function(trigger) {
|
||||||
|
const codeEl = trigger.previousElementSibling.cloneNode(true);
|
||||||
|
for (const childEl of codeEl.children) {
|
||||||
|
if (isCodeAnnotation(childEl)) {
|
||||||
|
childEl.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return codeEl.innerText;
|
||||||
|
}
|
||||||
|
const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', {
|
||||||
|
text: getTextToCopy
|
||||||
});
|
});
|
||||||
|
clipboard.on('success', onCopySuccess);
|
||||||
|
if (window.document.getElementById('quarto-embedded-source-code-modal')) {
|
||||||
|
const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', {
|
||||||
|
text: getTextToCopy,
|
||||||
|
container: window.document.getElementById('quarto-embedded-source-code-modal')
|
||||||
|
});
|
||||||
|
clipboardModal.on('success', onCopySuccess);
|
||||||
|
}
|
||||||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//);
|
||||||
var mailtoRegex = new RegExp(/^mailto:/);
|
var mailtoRegex = new RegExp(/^mailto:/);
|
||||||
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
var filterRegex = new RegExp("https:\/\/osk42\.quarto\.pub\/feutre");
|
||||||
@@ -383,7 +410,7 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href);
|
||||||
}
|
}
|
||||||
// Inspect non-navigation links and adorn them if external
|
// Inspect non-navigation links and adorn them if external
|
||||||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)');
|
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)');
|
||||||
for (var i=0; i<links.length; i++) {
|
for (var i=0; i<links.length; i++) {
|
||||||
const link = links[i];
|
const link = links[i];
|
||||||
if (!isInternal(link.href)) {
|
if (!isInternal(link.href)) {
|
||||||
@@ -480,7 +507,6 @@ window.document.addEventListener("DOMContentLoaded", function (event) {
|
|||||||
if (window.Quarto?.typesetMath) {
|
if (window.Quarto?.typesetMath) {
|
||||||
window.Quarto.typesetMath(note);
|
window.Quarto.typesetMath(note);
|
||||||
}
|
}
|
||||||
// TODO in 1.5, we should make sure this works without a callout special case
|
|
||||||
if (note.classList.contains("callout")) {
|
if (note.classList.contains("callout")) {
|
||||||
return note.outerHTML;
|
return note.outerHTML;
|
||||||
} else {
|
} else {
|
||||||
|
12
_site/site_libs/bootstrap/bootstrap-dark.min.css
vendored
12
_site/site_libs/bootstrap/bootstrap-dark.min.css
vendored
File diff suppressed because one or more lines are too long
12
_site/site_libs/bootstrap/bootstrap.min.css
vendored
12
_site/site_libs/bootstrap/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,189 +0,0 @@
|
|||||||
/* quarto syntax highlight colors */
|
|
||||||
:root {
|
|
||||||
--quarto-hl-al-color: #f07178;
|
|
||||||
--quarto-hl-an-color: #d4d0ab;
|
|
||||||
--quarto-hl-at-color: #00e0e0;
|
|
||||||
--quarto-hl-bn-color: #d4d0ab;
|
|
||||||
--quarto-hl-bu-color: #abe338;
|
|
||||||
--quarto-hl-ch-color: #abe338;
|
|
||||||
--quarto-hl-co-color: #f8f8f2;
|
|
||||||
--quarto-hl-cv-color: #ffd700;
|
|
||||||
--quarto-hl-cn-color: #ffd700;
|
|
||||||
--quarto-hl-cf-color: #ffa07a;
|
|
||||||
--quarto-hl-dt-color: #ffa07a;
|
|
||||||
--quarto-hl-dv-color: #d4d0ab;
|
|
||||||
--quarto-hl-do-color: #f8f8f2;
|
|
||||||
--quarto-hl-er-color: #f07178;
|
|
||||||
--quarto-hl-ex-color: #00e0e0;
|
|
||||||
--quarto-hl-fl-color: #d4d0ab;
|
|
||||||
--quarto-hl-fu-color: #ffa07a;
|
|
||||||
--quarto-hl-im-color: #abe338;
|
|
||||||
--quarto-hl-in-color: #d4d0ab;
|
|
||||||
--quarto-hl-kw-color: #ffa07a;
|
|
||||||
--quarto-hl-op-color: #ffa07a;
|
|
||||||
--quarto-hl-ot-color: #00e0e0;
|
|
||||||
--quarto-hl-pp-color: #dcc6e0;
|
|
||||||
--quarto-hl-re-color: #00e0e0;
|
|
||||||
--quarto-hl-sc-color: #abe338;
|
|
||||||
--quarto-hl-ss-color: #abe338;
|
|
||||||
--quarto-hl-st-color: #abe338;
|
|
||||||
--quarto-hl-va-color: #00e0e0;
|
|
||||||
--quarto-hl-vs-color: #abe338;
|
|
||||||
--quarto-hl-wa-color: #dcc6e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* other quarto variables */
|
|
||||||
:root {
|
|
||||||
--quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.al {
|
|
||||||
background-color: #2a0f15;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #f07178;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.an {
|
|
||||||
color: #d4d0ab;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.at {
|
|
||||||
color: #00e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.bn {
|
|
||||||
color: #d4d0ab;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.bu {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ch {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.co {
|
|
||||||
font-style: italic;
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cv {
|
|
||||||
color: #ffd700;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cn {
|
|
||||||
color: #ffd700;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cf {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #ffa07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.dt {
|
|
||||||
color: #ffa07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.dv {
|
|
||||||
color: #d4d0ab;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.do {
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.er {
|
|
||||||
color: #f07178;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ex {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #00e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.fl {
|
|
||||||
color: #d4d0ab;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.fu {
|
|
||||||
color: #ffa07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.im {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.in {
|
|
||||||
color: #d4d0ab;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.kw {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #ffa07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre > code.sourceCode > span {
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span {
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
code.sourceCode > span {
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.sourceCode,
|
|
||||||
div.sourceCode pre.sourceCode {
|
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.op {
|
|
||||||
color: #ffa07a;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ot {
|
|
||||||
color: #00e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.pp {
|
|
||||||
color: #dcc6e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.re {
|
|
||||||
background-color: #f8f8f2;
|
|
||||||
color: #00e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.sc {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ss {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.st {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.va {
|
|
||||||
color: #00e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.vs {
|
|
||||||
color: #abe338;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.wa {
|
|
||||||
color: #dcc6e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prevent-inlining {
|
|
||||||
content: "</";
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=935a306eefa94366c21e1a970dddb765.css.map */
|
|
@@ -1,203 +0,0 @@
|
|||||||
/* quarto syntax highlight colors */
|
|
||||||
:root {
|
|
||||||
--quarto-hl-ot-color: #003B4F;
|
|
||||||
--quarto-hl-at-color: #657422;
|
|
||||||
--quarto-hl-ss-color: #20794D;
|
|
||||||
--quarto-hl-an-color: #5E5E5E;
|
|
||||||
--quarto-hl-fu-color: #4758AB;
|
|
||||||
--quarto-hl-st-color: #20794D;
|
|
||||||
--quarto-hl-cf-color: #003B4F;
|
|
||||||
--quarto-hl-op-color: #5E5E5E;
|
|
||||||
--quarto-hl-er-color: #AD0000;
|
|
||||||
--quarto-hl-bn-color: #AD0000;
|
|
||||||
--quarto-hl-al-color: #AD0000;
|
|
||||||
--quarto-hl-va-color: #111111;
|
|
||||||
--quarto-hl-bu-color: inherit;
|
|
||||||
--quarto-hl-ex-color: inherit;
|
|
||||||
--quarto-hl-pp-color: #AD0000;
|
|
||||||
--quarto-hl-in-color: #5E5E5E;
|
|
||||||
--quarto-hl-vs-color: #20794D;
|
|
||||||
--quarto-hl-wa-color: #5E5E5E;
|
|
||||||
--quarto-hl-do-color: #5E5E5E;
|
|
||||||
--quarto-hl-im-color: #00769E;
|
|
||||||
--quarto-hl-ch-color: #20794D;
|
|
||||||
--quarto-hl-dt-color: #AD0000;
|
|
||||||
--quarto-hl-fl-color: #AD0000;
|
|
||||||
--quarto-hl-co-color: #5E5E5E;
|
|
||||||
--quarto-hl-cv-color: #5E5E5E;
|
|
||||||
--quarto-hl-cn-color: #8f5902;
|
|
||||||
--quarto-hl-sc-color: #5E5E5E;
|
|
||||||
--quarto-hl-dv-color: #AD0000;
|
|
||||||
--quarto-hl-kw-color: #003B4F;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* other quarto variables */
|
|
||||||
:root {
|
|
||||||
--quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre > code.sourceCode > span {
|
|
||||||
color: #003B4F;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span {
|
|
||||||
color: #003B4F;
|
|
||||||
}
|
|
||||||
|
|
||||||
code.sourceCode > span {
|
|
||||||
color: #003B4F;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.sourceCode,
|
|
||||||
div.sourceCode pre.sourceCode {
|
|
||||||
color: #003B4F;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ot {
|
|
||||||
color: #003B4F;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.at {
|
|
||||||
color: #657422;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ss {
|
|
||||||
color: #20794D;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.an {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.fu {
|
|
||||||
color: #4758AB;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.st {
|
|
||||||
color: #20794D;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cf {
|
|
||||||
color: #003B4F;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.op {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.er {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.bn {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.al {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.va {
|
|
||||||
color: #111111;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.bu {
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ex {
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.pp {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.in {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.vs {
|
|
||||||
color: #20794D;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.wa {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.do {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.im {
|
|
||||||
color: #00769E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.ch {
|
|
||||||
color: #20794D;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.dt {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.fl {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.co {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cv {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.cn {
|
|
||||||
color: #8f5902;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.sc {
|
|
||||||
color: #5E5E5E;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.dv {
|
|
||||||
color: #AD0000;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
code span.kw {
|
|
||||||
color: #003B4F;
|
|
||||||
font-style: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prevent-inlining {
|
|
||||||
content: "</";
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=debc5d5d77c3f9108843748ff7464032.css.map */
|
|
@@ -94,7 +94,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
if (link.href.indexOf("#") !== -1) {
|
if (link.href.indexOf("#") !== -1) {
|
||||||
const anchor = link.href.split("#")[1];
|
const anchor = link.href.split("#")[1];
|
||||||
const heading = window.document.querySelector(
|
const heading = window.document.querySelector(
|
||||||
`[data-anchor-id=${anchor}]`
|
`[data-anchor-id="${anchor}"]`
|
||||||
);
|
);
|
||||||
if (heading) {
|
if (heading) {
|
||||||
// Add the class
|
// Add the class
|
||||||
@@ -134,8 +134,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
window.innerHeight + window.pageYOffset >=
|
window.innerHeight + window.pageYOffset >=
|
||||||
window.document.body.offsetHeight
|
window.document.body.offsetHeight
|
||||||
) {
|
) {
|
||||||
|
// This is the no-scroll case where last section should be the active one
|
||||||
sectionIndex = 0;
|
sectionIndex = 0;
|
||||||
} else {
|
} else {
|
||||||
|
// This finds the last section visible on screen that should be made active
|
||||||
sectionIndex = [...sections].reverse().findIndex((section) => {
|
sectionIndex = [...sections].reverse().findIndex((section) => {
|
||||||
if (section) {
|
if (section) {
|
||||||
return window.pageYOffset >= section.offsetTop - sectionMargin;
|
return window.pageYOffset >= section.offsetTop - sectionMargin;
|
||||||
@@ -223,7 +225,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function findAndActivateCategories() {
|
async function findAndActivateCategories() {
|
||||||
const currentPagePath = offsetAbsoluteUrl(window.location.href);
|
// Categories search with listing only use path without query
|
||||||
|
const currentPagePath = offsetAbsoluteUrl(
|
||||||
|
window.location.origin + window.location.pathname
|
||||||
|
);
|
||||||
const response = await fetch(offsetRelativeUrl("listings.json"));
|
const response = await fetch(offsetRelativeUrl("listings.json"));
|
||||||
if (response.status == 200) {
|
if (response.status == 200) {
|
||||||
return response.json().then(function (listingPaths) {
|
return response.json().then(function (listingPaths) {
|
||||||
@@ -317,6 +322,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
for (const child of el.children) {
|
for (const child of el.children) {
|
||||||
child.style.opacity = 0;
|
child.style.opacity = 0;
|
||||||
child.style.overflow = "hidden";
|
child.style.overflow = "hidden";
|
||||||
|
child.style.pointerEvents = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
nexttick(() => {
|
nexttick(() => {
|
||||||
@@ -358,6 +364,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
|
|
||||||
const clone = child.cloneNode(true);
|
const clone = child.cloneNode(true);
|
||||||
clone.style.opacity = 1;
|
clone.style.opacity = 1;
|
||||||
|
clone.style.pointerEvents = null;
|
||||||
clone.style.display = null;
|
clone.style.display = null;
|
||||||
toggleContents.append(clone);
|
toggleContents.append(clone);
|
||||||
}
|
}
|
||||||
@@ -432,6 +439,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
for (const child of el.children) {
|
for (const child of el.children) {
|
||||||
child.style.opacity = 1;
|
child.style.opacity = 1;
|
||||||
child.style.overflow = null;
|
child.style.overflow = null;
|
||||||
|
child.style.pointerEvents = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const placeholderEl = window.document.getElementById(
|
const placeholderEl = window.document.getElementById(
|
||||||
@@ -739,6 +747,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
// Process the collapse state if this is an UL
|
// Process the collapse state if this is an UL
|
||||||
if (el.tagName === "UL") {
|
if (el.tagName === "UL") {
|
||||||
if (tocOpenDepth === -1 && depth > 1) {
|
if (tocOpenDepth === -1 && depth > 1) {
|
||||||
|
// toc-expand: false
|
||||||
el.classList.add("collapse");
|
el.classList.add("collapse");
|
||||||
} else if (
|
} else if (
|
||||||
depth <= tocOpenDepth ||
|
depth <= tocOpenDepth ||
|
||||||
@@ -757,10 +766,9 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// walk the TOC and expand / collapse any items that should be shown
|
// walk the TOC and expand / collapse any items that should be shown
|
||||||
|
|
||||||
if (tocEl) {
|
if (tocEl) {
|
||||||
walk(tocEl, 0);
|
|
||||||
updateActiveLink();
|
updateActiveLink();
|
||||||
|
walk(tocEl, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Throttle the scroll event and walk peridiocally
|
// Throttle the scroll event and walk peridiocally
|
||||||
@@ -779,6 +787,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
window.addEventListener(
|
window.addEventListener(
|
||||||
"resize",
|
"resize",
|
||||||
throttle(() => {
|
throttle(() => {
|
||||||
|
if (tocEl) {
|
||||||
|
updateActiveLink();
|
||||||
|
walk(tocEl, 0);
|
||||||
|
}
|
||||||
if (!isReaderMode()) {
|
if (!isReaderMode()) {
|
||||||
hideOverlappedSidebars();
|
hideOverlappedSidebars();
|
||||||
}
|
}
|
||||||
|
2
_site/site_libs/quarto-listing/list.min.js
vendored
2
_site/site_libs/quarto-listing/list.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -2,6 +2,8 @@ const kProgressiveAttr = "data-src";
|
|||||||
let categoriesLoaded = false;
|
let categoriesLoaded = false;
|
||||||
|
|
||||||
window.quartoListingCategory = (category) => {
|
window.quartoListingCategory = (category) => {
|
||||||
|
// category is URI encoded in EJS template for UTF-8 support
|
||||||
|
category = decodeURIComponent(atob(category));
|
||||||
if (categoriesLoaded) {
|
if (categoriesLoaded) {
|
||||||
activateCategory(category);
|
activateCategory(category);
|
||||||
setCategoryHash(category);
|
setCategoryHash(category);
|
||||||
@@ -15,7 +17,9 @@ window["quarto-listing-loaded"] = () => {
|
|||||||
if (hash) {
|
if (hash) {
|
||||||
// If there is a category, switch to that
|
// If there is a category, switch to that
|
||||||
if (hash.category) {
|
if (hash.category) {
|
||||||
activateCategory(hash.category);
|
// category hash are URI encoded so we need to decode it before processing
|
||||||
|
// so that we can match it with the category element processed in JS
|
||||||
|
activateCategory(decodeURIComponent(hash.category));
|
||||||
}
|
}
|
||||||
// Paginate a specific listing
|
// Paginate a specific listing
|
||||||
const listingIds = Object.keys(window["quarto-listings"]);
|
const listingIds = Object.keys(window["quarto-listings"]);
|
||||||
@@ -58,7 +62,10 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
for (const categoryEl of categoryEls) {
|
for (const categoryEl of categoryEls) {
|
||||||
const category = categoryEl.getAttribute("data-category");
|
// category needs to support non ASCII characters
|
||||||
|
const category = decodeURIComponent(
|
||||||
|
atob(categoryEl.getAttribute("data-category"))
|
||||||
|
);
|
||||||
categoryEl.onclick = () => {
|
categoryEl.onclick = () => {
|
||||||
activateCategory(category);
|
activateCategory(category);
|
||||||
setCategoryHash(category);
|
setCategoryHash(category);
|
||||||
@@ -208,7 +215,9 @@ function activateCategory(category) {
|
|||||||
|
|
||||||
// Activate this category
|
// Activate this category
|
||||||
const categoryEl = window.document.querySelector(
|
const categoryEl = window.document.querySelector(
|
||||||
`.quarto-listing-category .category[data-category='${category}'`
|
`.quarto-listing-category .category[data-category='${btoa(
|
||||||
|
encodeURIComponent(category)
|
||||||
|
)}']`
|
||||||
);
|
);
|
||||||
if (categoryEl) {
|
if (categoryEl) {
|
||||||
categoryEl.classList.add("active");
|
categoryEl.classList.add("active");
|
||||||
@@ -231,7 +240,9 @@ function filterListingCategory(category) {
|
|||||||
list.filter(function (item) {
|
list.filter(function (item) {
|
||||||
const itemValues = item.values();
|
const itemValues = item.values();
|
||||||
if (itemValues.categories !== null) {
|
if (itemValues.categories !== null) {
|
||||||
const categories = itemValues.categories.split(",");
|
const categories = decodeURIComponent(
|
||||||
|
atob(itemValues.categories)
|
||||||
|
).split(",");
|
||||||
return categories.includes(category);
|
return categories.includes(category);
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
|
@@ -5,9 +5,45 @@ const headroomChanged = new CustomEvent("quarto-hrChanged", {
|
|||||||
composed: false,
|
composed: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const announceDismiss = () => {
|
||||||
|
const annEl = window.document.getElementById("quarto-announcement");
|
||||||
|
if (annEl) {
|
||||||
|
annEl.remove();
|
||||||
|
|
||||||
|
const annId = annEl.getAttribute("data-announcement-id");
|
||||||
|
window.localStorage.setItem(`quarto-announce-${annId}`, "true");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const announceRegister = () => {
|
||||||
|
const annEl = window.document.getElementById("quarto-announcement");
|
||||||
|
if (annEl) {
|
||||||
|
const annId = annEl.getAttribute("data-announcement-id");
|
||||||
|
const isDismissed =
|
||||||
|
window.localStorage.getItem(`quarto-announce-${annId}`) || false;
|
||||||
|
if (isDismissed) {
|
||||||
|
announceDismiss();
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
annEl.classList.remove("hidden");
|
||||||
|
}
|
||||||
|
|
||||||
|
const actionEl = annEl.querySelector(".quarto-announcement-action");
|
||||||
|
if (actionEl) {
|
||||||
|
actionEl.addEventListener("click", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
// Hide the bar immediately
|
||||||
|
announceDismiss();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
window.document.addEventListener("DOMContentLoaded", function () {
|
window.document.addEventListener("DOMContentLoaded", function () {
|
||||||
let init = false;
|
let init = false;
|
||||||
|
|
||||||
|
announceRegister();
|
||||||
|
|
||||||
// Manage the back to top button, if one is present.
|
// Manage the back to top button, if one is present.
|
||||||
let lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;
|
let lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;
|
||||||
const scrollDownBuffer = 5;
|
const scrollDownBuffer = 5;
|
||||||
|
@@ -1275,7 +1275,11 @@ async function fuseSearch(query, fuse, fuseOptions) {
|
|||||||
|
|
||||||
// If we don't have a subfuse and the query is long enough, go ahead
|
// If we don't have a subfuse and the query is long enough, go ahead
|
||||||
// and create a subfuse to use for subsequent queries
|
// and create a subfuse to use for subsequent queries
|
||||||
if (now - then > kFuseMaxWait && subSearchFuse === undefined) {
|
if (
|
||||||
|
now - then > kFuseMaxWait &&
|
||||||
|
subSearchFuse === undefined &&
|
||||||
|
resultsRaw.length < fuseOptions.limit
|
||||||
|
) {
|
||||||
subSearchTerm = query;
|
subSearchTerm = query;
|
||||||
subSearchFuse = new window.Fuse([], kFuseIndexOptions);
|
subSearchFuse = new window.Fuse([], kFuseIndexOptions);
|
||||||
resultsRaw.forEach((rr) => {
|
resultsRaw.forEach((rr) => {
|
||||||
|
13
about.qmd
13
about.qmd
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
title: "A propos"
|
|
||||||
image: profile.jpg
|
|
||||||
about:
|
|
||||||
template: jolla
|
|
||||||
# links:
|
|
||||||
# - icon: twitter
|
|
||||||
# text: Twitter
|
|
||||||
# href: https://twitter.com
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
About this blog
|
|
14
contact.qmd
Executable file
14
contact.qmd
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: "A propos"
|
||||||
|
image: _images/logo_FEUTRE.png
|
||||||
|
links:
|
||||||
|
- icon: envelope
|
||||||
|
text: Email
|
||||||
|
href: mailto:feutrebloistours@gmail.com
|
||||||
|
- icon: instagram
|
||||||
|
text: Instagram
|
||||||
|
href: https://www.instagram.com/feutre_ut/
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
About this blog
|
44
index.qmd
44
index.qmd
@@ -34,7 +34,7 @@ Vous pouvez nous contacter à l'adresse email [feutrebloistours@gmail.com](mailt
|
|||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="https://www.helloasso.com/associations/federation-etudiante-de-l-universite-de-tours-pour-la-representation-et-l-egalite/adhesions/adhesion-classique">
|
<a href="https://www.helloasso.com/associations/federation-etudiante-de-l-universite-de-tours-pour-la-representation-et-l-egalite/adhesions/adhesion-classique" target="_blank">
|
||||||
<button type="button" class="btn btn-outline-success"
|
<button type="button" class="btn btn-outline-success"
|
||||||
style="margin-bottom:25.09px">
|
style="margin-bottom:25.09px">
|
||||||
<i class="bi bi-person-vcard"></i>
|
<i class="bi bi-person-vcard"></i>
|
||||||
@@ -52,19 +52,13 @@ Vous pouvez nous contacter à l'adresse email [feutrebloistours@gmail.com](mailt
|
|||||||
:::{.callout-note icon=false}
|
:::{.callout-note icon=false}
|
||||||
### Nos objectifs
|
### Nos objectifs
|
||||||
|
|
||||||
La FEUTRE à pour but de créer et fédérer des associations afin de :
|
La FEUTRE à pour but de **Représenter** les intérêts des étudiants de l'Université de Tours
|
||||||
|
|
||||||
- **Représenter** les intérêts des étudiants de l'Université de Tours
|
|
||||||
- **soutenir des candidats** aux différents [conseils de l'Université de Tours](posts/conseils_de_l_universite/index.qmd)
|
|
||||||
- améliorer l'égalité dans les études
|
|
||||||
- faire en sorte que [chaque étudiant soit représenté](posts/representation_de_tous_les_etudiants.qmd)
|
|
||||||
- améliorer la communication entre les étudiants et l'administration
|
|
||||||
- faire avancer la Décarbonation
|
|
||||||
- promouvoir la **démocratie**
|
|
||||||
- organiser des événements de **démocratie participative**
|
|
||||||
- promouvoir l'indépendance numérique
|
|
||||||
- impliquer des étudiants dans la vie politique
|
|
||||||
|
|
||||||
|
- en soutenant des candidat·es aux différents [conseils de l'Université de Tours](posts/conseils_de_l_universite/index.qmd)
|
||||||
|
- en améliorant l'égalité dans les études
|
||||||
|
- en faisant en sorte que [chaque étudiant soit représenté](posts/representation_de_tous_les_etudiants.qmd)
|
||||||
|
- en améliorant la communication entre les étudiants et l'administration
|
||||||
|
- en faisant avancer la Décarbonation
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
||||||
@@ -72,10 +66,8 @@ La FEUTRE à pour but de créer et fédérer des associations afin de :
|
|||||||
### Nos actions actuelles
|
### Nos actions actuelles
|
||||||
|
|
||||||
|
|
||||||
- élus au [conseil de l'UFR Sciences et Techniques](posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.qmd), notamment le vice-président de ce conseil.
|
- élu·es au [conseil de l'UFR Sciences et Techniques](posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.qmd), au [CFVU sciences et techniques](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd) ainsi qu'au [Conseil de la Recherche](posts/conseils_de_l_universite/conseil_de_la_recherche.qmd)
|
||||||
- en campagne pour la [Commission de la Formation et de la Vie Universitaire](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd)
|
- Distributions alimentaires
|
||||||
- en campagne pour le [Conseil de la Recherche](posts/conseils_de_l_universite/conseil_de_la_recherche.qmd)
|
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
||||||
@@ -84,7 +76,7 @@ La FEUTRE à pour but de créer et fédérer des associations afin de :
|
|||||||
### Membres de la FEUTRE
|
### Membres de la FEUTRE
|
||||||
|
|
||||||
|
|
||||||
#### Élus au [conseil de l'UFR Sciences et Techniques](posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.qmd)
|
#### Élu·es au [conseil de l'UFR Sciences et Techniques](posts/conseils_de_l_universite/conseils_de_composantes/conseil_de_l_UFR_sciences_et_techniques.qmd)
|
||||||
- [Mulard Andreas](posts/personnes/mulard_andreas.qmd)
|
- [Mulard Andreas](posts/personnes/mulard_andreas.qmd)
|
||||||
<!-- - Bourdois Camille -->
|
<!-- - Bourdois Camille -->
|
||||||
- [Plaisant Oscar](posts/personnes/plaisant_oscar.qmd)
|
- [Plaisant Oscar](posts/personnes/plaisant_oscar.qmd)
|
||||||
@@ -93,21 +85,21 @@ La FEUTRE à pour but de créer et fédérer des associations afin de :
|
|||||||
- Leguay Émerance
|
- Leguay Émerance
|
||||||
- [Lagasse Adrian](posts/personnes/lagasse_adrian.qmd)
|
- [Lagasse Adrian](posts/personnes/lagasse_adrian.qmd)
|
||||||
|
|
||||||
#### Candidats au [CFVU](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd) sciences
|
#### Élu·es au [CFVU](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd) sciences
|
||||||
- [MULARD Andreas](posts/personnes/mulard_andreas.qmd)
|
- [MULARD Andreas](posts/personnes/mulard_andreas.qmd)
|
||||||
- HOURY Catherine
|
- HOURY Catherine
|
||||||
- [PLAISANT Oscar](posts/personnes/plaisant_oscar.qmd)
|
- [PLAISANT Oscar](posts/personnes/plaisant_oscar.qmd)
|
||||||
- DROUIN Marielle
|
<!-- - DROUIN Marielle -->
|
||||||
- BERTHEL Gabriel
|
<!-- - BERTHEL Gabriel -->
|
||||||
|
|
||||||
|
|
||||||
#### Candidats au [CFVU](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd) lettres, sciences humaines et sociales
|
<!-- #### Candidats au [CFVU](posts/conseils_de_l_universite/comission_de_formation_et_vie_universitaire.qmd) lettres, sciences humaines et sociales -->
|
||||||
- WATTERLOT Arthur
|
<!-- - WATTERLOT Arthur -->
|
||||||
- ANAËL Aicoul
|
<!-- - ANAËL Aicoul -->
|
||||||
|
|
||||||
#### Candidats au [Conseil de la Recherche](posts/conseils_de_l_universite/conseil_de_la_recherche.qmd)
|
#### Élu·es au [Conseil de la Recherche](posts/conseils_de_l_universite/conseil_de_la_recherche.qmd)
|
||||||
- OVIDE Manon
|
- OVIDE Manon
|
||||||
- CRULIS Ben
|
- FAGOT-DESPERIES Vivien
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
BIN
posts/conseils_de_l_universite/_images/organigrame_conseils_universite.png
Executable file
BIN
posts/conseils_de_l_universite/_images/organigrame_conseils_universite.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 510 KiB |
28
posts/conseils_de_l_universite/index.qmd
Executable file
28
posts/conseils_de_l_universite/index.qmd
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: "Conseils de l'université"
|
||||||
|
listing:
|
||||||
|
# page-size: 100
|
||||||
|
contents:
|
||||||
|
- "*.qmd"
|
||||||
|
sort: "date desc"
|
||||||
|
type: table
|
||||||
|
categories: numbered
|
||||||
|
sort-ui: false
|
||||||
|
filter-ui: false
|
||||||
|
table-hover: true
|
||||||
|
fields:
|
||||||
|
- "title"
|
||||||
|
field-display-names:
|
||||||
|
title: "Liste des conseils de l'université"
|
||||||
|
---
|
||||||
|
|
||||||
|
# Les différents conseils de l'université
|
||||||
|
|
||||||
|
L'université est dirigée par plusieurs conseils qui prennent ensemble les différentes décisions relatives à la pédagogie, l'administration, la gestion des budgets...
|
||||||
|
|
||||||
|
## Organigrame simplifié
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: "Distributions alimentaire"
|
||||||
|
---
|
||||||
|
|
||||||
|
Nous organisons des distributions alimentaires à Grandmont.
|
||||||
|
|
||||||
|
La prochaine aura lieu le **4 avril 2025** à 12h dans le bâtiment F.
|
||||||
|
|
||||||
|
Y seront distribués des produits alimentaires ainsi que des produits d'hygiène.
|
||||||
|
|
||||||
|
<a href="https://framaforms.org/distributions-alimentaires-a-grandmont-4-avril-inscription-1740045910">
|
||||||
|
<button type="button" class="btn btn-outline-success"
|
||||||
|
style="margin-bottom:25.09px">
|
||||||
|
<i class="bi bi-person-vcard"></i>
|
||||||
|
Inscription
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<iframe src="https://framaforms.org/distributions-alimentaires-a-grandmont-4-avril-inscription-1740045910" width="100%" height="800" border="0"></iframe>
|
||||||
|
|
@@ -6,21 +6,20 @@ description: "Passionné d'informatique et de mathématiques"
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Je étudiant en deuxième année d'Informatique et de mathématiques, et passionné par ces deux sujets.
|
Je étudiant en troisième année de licence de mathématiques et j'ai également une licence d'informatique.
|
||||||
|
|
||||||
J'étudie principalement au campus de Blois, et c'est pour essayer de représenter les voix des étudiants Blaisois que j'ai voulu être dans la L.I.S.T.E.
|
J'ai étudié 3 ans au campus de Blois, et j'habite actuellement à Tours, je cherche donc à représenter au mieux les étudiant·es de tous les campus de l'université.
|
||||||
|
|
||||||
Je cherche également à défendre l'indépendance numérique, ainsi que l'égalité entre les étudiants.
|
Je cherche à défendre l'égalité entre les étudiant·es, je suis convaincu que tout le monde devrait avoir le droit de faire des études universitaires, et que les droits des étudiant·es doivent être défendus.
|
||||||
|
|
||||||
C'est moi qui m'occupe de ce site internet !
|
|
||||||
|
|
||||||
[{width=50% fig-align="center"}](https://osk42.quarto.pub)
|
|
||||||
|
|
||||||
:::{.callout-info}
|
:::{.callout-info}
|
||||||
## Auto-promotion
|
## Auto-promotion
|
||||||
|
|
||||||
- mon blog : [OSK42](https://osk42.quarto.pub/)
|
- mon blog : [OSK42](https://osk42.quarto.pub/)
|
||||||
- ma chaîne youtube : [OsKaR](https://www.youtube.com/@oskar31415)
|
- ma chaîne youtube : [OsKaR](https://www.youtube.com/@oskar31415)
|
||||||
|
|
||||||
|
Je m'occupe aussi de ce site internet !
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
||||||
|
49
posts/propositions.qmd
Executable file
49
posts/propositions.qmd
Executable file
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
title: "Propositions"
|
||||||
|
---
|
||||||
|
|
||||||
|
::: {layout="[[1, 1], [1, 1]]"}
|
||||||
|
|
||||||
|
::: {.callout-note icon=false}
|
||||||
|
### Handicap
|
||||||
|
- Garantir pour les étudiants handicapés un mode d'évaluation alternatif si nécessaire
|
||||||
|
- Obliger même en contrôle continu à ce que les tiers temps aient une salle à part pour passer leur examen
|
||||||
|
- Garantir un stage à l’Université si victime de discrimination à la recherche d'un stage ou une autre façon de valider son diplôme
|
||||||
|
- Mise aux normes des bâtiments aux réglementations sur les handicaps
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: {.callout-note icon=false}
|
||||||
|
### Éducation
|
||||||
|
- Instaurer le tutorat dans tous les départements
|
||||||
|
- Proposer plus de diversité dans les cours de langues
|
||||||
|
- Faciliter les transferts entre fac, IUT et EPU
|
||||||
|
- Obligation de mettre tous les cours en ligne
|
||||||
|
- Ouvrir des doubles formations
|
||||||
|
- Permettre aux étudiants ayant peu de cours à valider de prendre des cours dans d’autres formations gratuitement
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: {.callout-important icon=false}
|
||||||
|
### Réformer l'Université
|
||||||
|
- Garantir l’existence des rattrapages
|
||||||
|
- Ne pas appliquer l’augmentations des frais pour les étudiants étrangers
|
||||||
|
- Réformer le système des abscences justifiées pour ne plus avoir 0/20
|
||||||
|
- Instaurer une troisième séance de rattrapage pour les étudiants ayant eu un stage ou des problèmes de santé
|
||||||
|
- Méthode d’élection différente pour les postes uninominaux pour une meilleure représentation
|
||||||
|
:::
|
||||||
|
|
||||||
|
|
||||||
|
::: {.callout-important icon=false}
|
||||||
|
### Campus et associations
|
||||||
|
- Instaurer une journée des association sur chaque campus
|
||||||
|
- Donner aux étudiants de Blois une enveloppe mobilité pour faire des activités sur Tours
|
||||||
|
- Créer d’un lieu de stockage pour les associations
|
||||||
|
- Donner une aide financière à la création d’associations
|
||||||
|
- Créer d’un conseil inter-composante à Blois
|
||||||
|
- Favoriser les projets ayant lieu sur Blois et Tours
|
||||||
|
:::
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user