Sahel, manœuvres géopolitiques et souveraineté des peuples.
par Abdoulahi ATTAYOUB Sahel : Les manœuvres géopolitiques ne doivent pas hypothéquer le nécessaire respect de la souveraineté des peuples. La Communauté internationale semble manifestement de plus en plus insensible aux souffrances des populations du Sahel …
Tin Zaouaten, Famas et Wagner en déroute
par Chekib Abdessalam Le désert se mérite Défaite cuisante de la barbarie à TinZa Le désert se mérite Défaite cuisante de la barbarie à Tinza Contexte Conflits Armés: Les combats à Tinzaouaten ont résulté en des pertes humaines considérables parmi les forces …
Mali, griots réveillez-vous, on bâillonne la presse
par Chekib Abdessalam Mali : griots réveillez-vous, on bâillonne la presse Qui donc est celui-ci qui aura osé faire taire les griots ? Quelque jeunot entiché de son béret, de sa cagoule, de ses armes automatiques et de ses gallons de commandement, quelque …
Taxonomy Setup
Taxonomies allow you to classify content. Hugo includes tags and categories by default. You can define custom taxonomies in your site configuration: yaml Copy taxonomies: tag: tags category: categories series: series Then use them in your front matter: yaml Copy series: ["Hugo 101"]
Content Organization
Hugo organizes content based on the directory structure inside the content folder. Sections Top-level directories in content become sections (e.g., content/posts becomes example.com/posts). Page Bundles A directory containing an index.md file is a Leaf Bundle. It can contain resources like images …
Shortcodes Guide
Shortcodes allow you to embed rich content without writing raw HTML. To embed a YouTube video, use the built-in shortcode: md Copy {{< youtube id="w7Ft2ymGmfc" >}} You can also create custom shortcodes in your layouts/shortcodes directory.
Markdown Syntax
Hugo uses Goldmark as its default Markdown renderer. It supports standard Markdown syntax and GitHub Flavored Markdown (GFM). Headers H1 H2 H3 Emphasis Italic and Bold. Lists First item Second item Sub-item
Hugo Configuration
Hugo is highly customizable through its configuration file, typically named hugo.yaml, hugo.toml, or hugo.json. Here is a basic example of a hugo.yaml configuration: yaml Copy baseURL: 'https://example.org/' languageCode: 'en-us' title: 'My New Hugo Site' theme: …
Mermaid Diagrams Showcase
This post demonstrates the Mermaid diagram integration. The code blocks below are rendered with a tab interface allowing you to switch between the Mermaid source code and the rendered diagram. Flowchart Diagram Source Copy graph TD A[Start] --> B{Is it working?} B -- Yes --> C[Great!] B -- No --> …