Skip to content

Commit

Permalink
Corrige le lien depuis le flux vers l’article
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbgk committed Sep 28, 2023
1 parent 3c393fc commit e6698cc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2 class="subtitle"><a href="/blog/">le blog</a></h2>
<div class="main">
<article class="blog-post">
<h2>
<a href="./2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/">Petit panorama des pratiques de rémunération en horizontalité</a>
<a href="/blog/2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/">Petit panorama des pratiques de rémunération en horizontalité</a>
</h2>
<aside>
<time datetime="2023-09-25">2023-09-25</time>
Expand Down
2 changes: 1 addition & 1 deletion blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2 class="subtitle"><a href="/blog/">le blog</a></h2>
<section>
<article class="blog-post">
<h2>
<a href="./2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/">Petit panorama des pratiques de rémunération en horizontalité</a>
<a href="/blog/2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/">Petit panorama des pratiques de rémunération en horizontalité</a>
</h2>
<aside>
<time datetime="2023-09-25">2023-09-25</time>
Expand Down
5 changes: 2 additions & 3 deletions generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,11 @@ def __post_init__(self):
self.year = self.date_publication.year
self.slug = slugify(self.titre)
# Construction de l’URL unique pour cet article.
self.url = f"./{self.year}/{self.slug}/"
self.url = f"/blog/{self.year}/{self.slug}/"
self.full_url = f"http://scopyleft.fr{self.url}"
self.normalized_date = self.date_publication.strftime(NORMALIZED_STRFTIME)
self.escaped_content = escape(self.html)


def __eq__(self, other):
return self.url == other.url

Expand Down Expand Up @@ -119,9 +118,9 @@ def feed():
(HERE / "syndication" / "flux.atom").write_text(content)



# Des utilitaires pour parcourir les fichiers markdown des sujets.


def each_file_from(source_dir, pattern="*", exclude=None):
"""Walk across the `source_dir` and return the `pattern` file paths."""
for path in _each_path_from(source_dir, pattern=pattern, exclude=exclude):
Expand Down
4 changes: 2 additions & 2 deletions syndication/flux.atom
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

<entry xml:lang="fr">
<title type="html">Petit panorama des pratiques de rémunération en horizontalité</title>
<link href="http://scopyleft.fr./2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/" rel="alternate" type="text/html" />
<link href="http://scopyleft.fr/blog/2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/" rel="alternate" type="text/html" />
<updated>2023-09-25T12:00:00+01:00</updated>
<id>http://scopyleft.fr./2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/</id>
<id>http://scopyleft.fr/blog/2023/petit-panorama-des-pratiques-de-remuneration-en-horizontalite/</id>
<summary type="html">&lt;p&gt;L’histoire des salaires à Scopyleft, c’est d’abord un salaire contraint parce que y’avait pas d’argent pour se rémunérer correctement, puis un salaire égalitaire, avant d’arriver à un salaire au besoin. Les quelques règles qui fixent ce salaire sont :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ne pas mettre en péril l’équilibre financier de la boite.&lt;/li&gt;
Expand Down

0 comments on commit e6698cc

Please sign in to comment.