Add pipelines url

This commit is contained in:
Gabriel Augendre 2020-12-27 16:08:30 +01:00
parent f47addf891
commit 27073402e0
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4
3 changed files with 4 additions and 1 deletions

View file

@ -53,4 +53,5 @@ def blog_metadata(request):
context["blog_title"] = settings.BLOG["title"]
context["blog_description"] = settings.BLOG["description"]
context["blog_author"] = settings.BLOG["author"]
context["blog_pipelines_url"] = settings.BLOG["repo"]["pipelines_url"]
return context

View file

@ -48,7 +48,8 @@
<a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 International License</a>.
Code blocks by Gabriel Augendre are licensed under the
<a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU GENERAL PUBLIC LICENSE version 3</a>.<br>
Currently deployed version: <a href="{{ git_version_url }}">{{ git_version }}</a>
Currently deployed version: <a href="{{ git_version_url }}">{{ git_version }}</a>. You can check
for ongoing builds <a href="{{ blog_pipelines_url }}">here</a>.
</p>
</footer>
</body>

View file

@ -182,6 +182,7 @@ BLOG = {
"commit_url": "https://git.sr.ht/~crocmagnon/blog/commit/{commit_sha}",
"homepage": "https://git.sr.ht/~crocmagnon/blog",
"log": "https://git.sr.ht/~crocmagnon/blog/log",
"pipelines_url": "https://gitlab.com/gaugendre/blog/pipelines",
},
}