feat(glossaire): add advanced external paradigms from chapter 3
This commit is contained in:
@@ -68,16 +68,16 @@ const doctrines = entries
|
||||
{entry.data.term}
|
||||
</a>
|
||||
<span> — {entry.data.definitionShort}</span>
|
||||
{(entry.data.authors?.length > 0 || entry.data.tradition) && (
|
||||
{(entry.data.mobilizedAuthors?.length > 0 || entry.data.comparisonTraditions?.length > 0) && (
|
||||
<div class="glossary-portal-meta">
|
||||
{entry.data.authors?.length > 0 && (
|
||||
{entry.data.mobilizedAuthors?.length > 0 && (
|
||||
<div>
|
||||
<strong>Auteurs liés :</strong> {entry.data.authors.join(", ")}
|
||||
<strong>Auteurs mobilisés :</strong> {entry.data.mobilizedAuthors.join(" / ")}
|
||||
</div>
|
||||
)}
|
||||
{entry.data.tradition && (
|
||||
{entry.data.comparisonTraditions && (
|
||||
<div>
|
||||
<strong>Tradition :</strong> {entry.data.tradition}
|
||||
<strong>Traditions de comparaison :</strong> {entry.data.comparisonTraditions.join(" / ")}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
@@ -100,16 +100,16 @@ const doctrines = entries
|
||||
{entry.data.term}
|
||||
</a>
|
||||
<span> — {entry.data.definitionShort}</span>
|
||||
{(entry.data.authors?.length > 0 || entry.data.tradition) && (
|
||||
{(entry.data.mobilizedAuthors?.length > 0 || entry.data.comparisonTraditions?.length > 0) && (
|
||||
<div class="glossary-portal-meta">
|
||||
{entry.data.authors?.length > 0 && (
|
||||
{entry.data.mobilizedAuthors?.length > 0 && (
|
||||
<div>
|
||||
<strong>Auteurs liés :</strong> {entry.data.authors.join(", ")}
|
||||
<strong>Auteurs mobilisés :</strong> {entry.data.mobilizedAuthors.join(", ")}
|
||||
</div>
|
||||
)}
|
||||
{entry.data.tradition && (
|
||||
{entry.data.comparisonTraditions && (
|
||||
<div>
|
||||
<strong>Tradition :</strong> {entry.data.tradition}
|
||||
<strong>Traditions de comparaison :</strong> {entry.data.comparisonTraditions}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user