feat(glossaire): enrichit la cartographie archicratique et les archicrations
This commit is contained in:
@@ -17,65 +17,48 @@ const doctrines = entries
|
||||
---
|
||||
|
||||
<GlossaryLayout
|
||||
title="Paradigmes théoriques"
|
||||
title="Paradigmes et doctrines"
|
||||
version="1.0"
|
||||
>
|
||||
<Fragment slot="aside">
|
||||
<nav class="glossary-portal-aside" aria-label="Navigation des paradigmes">
|
||||
<div class="glossary-portal-aside__block">
|
||||
<a class="glossary-portal-aside__back" href="/glossaire/">← Retour au glossaire</a>
|
||||
<div class="glossary-portal-aside__title">Paysage paradigmatique</div>
|
||||
<div class="glossary-portal-aside__title">Cartographie théorique</div>
|
||||
<div class="glossary-portal-aside__meta">
|
||||
Paradigmes théoriques · doctrines structurantes
|
||||
doctrines fondatrices · paradigmes régulateurs
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="glossary-portal-aside__block">
|
||||
<h2 class="glossary-portal-aside__heading">Dans cette page</h2>
|
||||
<ul class="glossary-portal-aside__list">
|
||||
<li><a href="#paradigmes">Paradigmes théoriques</a></li>
|
||||
<li><a href="#doctrines">Doctrines structurantes</a></li>
|
||||
<li><a href="#doctrines">Doctrines fondatrices</a></li>
|
||||
<li><a href="#paradigmes">Paradigmes régulateurs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</Fragment>
|
||||
|
||||
<h1>Paysage paradigmatique</h1>
|
||||
<h1>Cartographie théorique</h1>
|
||||
|
||||
<p>
|
||||
Le paradigme archicratique s’inscrit dans un paysage théorique plus large
|
||||
mobilisant différents cadres d’analyse du pouvoir, de la régulation et des
|
||||
systèmes sociaux.
|
||||
L’archicratie ne se déploie pas dans le vide. Elle s’inscrit dans un paysage
|
||||
intellectuel plus large où se croisent des doctrines fondatrices de l’ordre
|
||||
et des paradigmes de régulation des collectifs.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Cette page rassemble les grands paradigmes externes mobilisés dans
|
||||
l’essai-thèse, ainsi que les doctrines structurantes qui permettent d’en
|
||||
préciser certaines formulations. Elle constitue une porte d’entrée vers la
|
||||
cartographie intellectuelle au sein de laquelle l’archicratie se situe, se
|
||||
distingue ou entre en tension.
|
||||
On appellera ici <strong>doctrines fondatrices</strong> les formulations qui
|
||||
posent un principe premier de légitimité, de souveraineté ou d’ordre
|
||||
politique. On appellera <strong>paradigmes régulateurs</strong> les cadres
|
||||
théoriques qui décrivent des modes de tenue, de conflictualité,
|
||||
d’administration, de reproduction ou de transformation des sociétés.
|
||||
</p>
|
||||
|
||||
<section id="paradigmes" class="glossary-portal-section">
|
||||
<h2>Paradigmes théoriques</h2>
|
||||
<ul class="glossary-portal-list">
|
||||
{paradigmes.map((entry) => {
|
||||
const slug = slugOf(entry);
|
||||
return (
|
||||
<li>
|
||||
<a href={`/glossaire/${slug}/`}>
|
||||
{entry.data.term}
|
||||
</a>
|
||||
<span> — {entry.data.definitionShort}</span>
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
{doctrines.length > 0 && (
|
||||
<section id="doctrines" class="glossary-portal-section">
|
||||
<h2>Doctrines structurantes</h2>
|
||||
<h2>Doctrines fondatrices</h2>
|
||||
<ul class="glossary-portal-list">
|
||||
{doctrines.map((entry) => {
|
||||
const slug = slugOf(entry);
|
||||
@@ -85,6 +68,20 @@ const doctrines = entries
|
||||
{entry.data.term}
|
||||
</a>
|
||||
<span> — {entry.data.definitionShort}</span>
|
||||
{(entry.data.authors?.length > 0 || entry.data.tradition) && (
|
||||
<div class="glossary-portal-meta">
|
||||
{entry.data.authors?.length > 0 && (
|
||||
<div>
|
||||
<strong>Auteurs liés :</strong> {entry.data.authors.join(", ")}
|
||||
</div>
|
||||
)}
|
||||
{entry.data.tradition && (
|
||||
<div>
|
||||
<strong>Tradition :</strong> {entry.data.tradition}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
@@ -92,6 +89,37 @@ const doctrines = entries
|
||||
</section>
|
||||
)}
|
||||
|
||||
<section id="paradigmes" class="glossary-portal-section">
|
||||
<h2>Paradigmes régulateurs</h2>
|
||||
<ul class="glossary-portal-list">
|
||||
{paradigmes.map((entry) => {
|
||||
const slug = slugOf(entry);
|
||||
return (
|
||||
<li>
|
||||
<a href={`/glossaire/${slug}/`}>
|
||||
{entry.data.term}
|
||||
</a>
|
||||
<span> — {entry.data.definitionShort}</span>
|
||||
{(entry.data.authors?.length > 0 || entry.data.tradition) && (
|
||||
<div class="glossary-portal-meta">
|
||||
{entry.data.authors?.length > 0 && (
|
||||
<div>
|
||||
<strong>Auteurs liés :</strong> {entry.data.authors.join(", ")}
|
||||
</div>
|
||||
)}
|
||||
{entry.data.tradition && (
|
||||
<div>
|
||||
<strong>Tradition :</strong> {entry.data.tradition}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
.glossary-portal-section{
|
||||
margin-top: 30px;
|
||||
@@ -104,10 +132,21 @@ const doctrines = entries
|
||||
}
|
||||
|
||||
.glossary-portal-list li{
|
||||
margin-bottom: 10px;
|
||||
margin-bottom: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.glossary-portal-meta{
|
||||
margin-top: 6px;
|
||||
padding-left: 2px;
|
||||
font-size: 14px;
|
||||
opacity: .9;
|
||||
}
|
||||
|
||||
.glossary-portal-meta div + div{
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.glossary-portal-aside{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
Reference in New Issue
Block a user