# Static Sites

## Jekyll

<figure><img src="https://3036093185-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Lfz3-8TFBntk9XJYMtW%2Fuploads%2FOyIZlPtdfZnaNGs9D5lX%2Fjekyll-og.png?alt=media&#x26;token=7fb0abbc-647a-4090-a46c-395fb8f711da" alt="" width="375"><figcaption></figcaption></figure>

#### Installation

```bash
sudo dnf install ruby-devel	# Installation
gem install jekyll		# Installation gem jekyll
jekyll new my-site 		# Create new site
cd my-site			# Navigate to new site
jekyll serve			# Launch server (http://localhost:4000)
```

{% hint style="info" %}
Source : <https://developer.fedoraproject.org/start/sw/web-app/jekyll.html>
{% endhint %}

#### Hébergement

{% content-ref url="../../../articles/markdown" %}
[markdown](https://wiki.chamallow.com/1.-technologie/articles/markdown)
{% endcontent-ref %}

## Hugo

<figure><img src="https://3036093185-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Lfz3-8TFBntk9XJYMtW%2Fuploads%2FKZHnhl6jk6lwf21xkmF5%2Fhugo.png?alt=media&#x26;token=954b185d-c4d7-440f-8f9a-75990d444178" alt="" width="323"><figcaption></figcaption></figure>

#### Installation

```bash
sudo dnf install hugo		# Installation
hugo new site my-site		# Creating a new website
cd my-site			# Navigate to new site
git init			# Add a theme (ex: themes/ananke)
git submodule add https://github.com/budparr/gohugo-theme-ananke.git
hugo server			# Launch server
```

{% hint style="info" %}
Source : <https://developer.fedoraproject.org/start/sw/web-app/hugo.html>
{% endhint %}

### Thèmes

Une sélection de liste de thèmes pour HUGO

* Stack : <https://github.com/CaiJimmy/hugo-theme-stack/>
* Hextra : <https://imfing.github.io/hextra/>

## Flarum

<figure><img src="https://3036093185-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Lfz3-8TFBntk9XJYMtW%2Fuploads%2FtPAdCDcNnJzkAv48rWh5%2Fflarum-ar21.png?alt=media&#x26;token=74419bbc-36f1-4399-88fd-d974ef7b96e1" alt="" width="375"><figcaption></figcaption></figure>

Flarum est une plateforme opensource conçue pour créer et gérer des forums communautaires

{% hint style="info" %}
Site : [https://github.com/flarum](https://github.com/flarum/framework)
{% endhint %}

#### Installation

Suivre les étapes ici : <https://docs.flarum.org/install>

Si l'installation s'avère trop complexe, vous pouvez créer votre forum en quelques secondes sur [**Free Flarum**](https://www.freeflarum.com), un service communautaire (qui n'est pas affilié à l'équipe en chage de Flarum)

### Themes

Une sélection de liste de thèmes pour Flarum

* BetterFLarum - Next Admin UI : <https://github.com/betterflarum/nextadmintheme>
* Asirem : <https://github.com/afrux/asirem>
* Flarum-theme-fedora-fr : <https://github.com/Fedora-Fr/flarum-theme-fedora-fr>
* OXO theme : <https://github.com/yannisme/flarum-oxo-theme>
