Add pipelines url
This commit is contained in:
parent
f47addf891
commit
27073402e0
3 changed files with 4 additions and 1 deletions
|
@ -53,4 +53,5 @@ def blog_metadata(request):
|
||||||
context["blog_title"] = settings.BLOG["title"]
|
context["blog_title"] = settings.BLOG["title"]
|
||||||
context["blog_description"] = settings.BLOG["description"]
|
context["blog_description"] = settings.BLOG["description"]
|
||||||
context["blog_author"] = settings.BLOG["author"]
|
context["blog_author"] = settings.BLOG["author"]
|
||||||
|
context["blog_pipelines_url"] = settings.BLOG["repo"]["pipelines_url"]
|
||||||
return context
|
return context
|
||||||
|
|
|
@ -48,7 +48,8 @@
|
||||||
<a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 International License</a>.
|
<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
|
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>
|
<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>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -182,6 +182,7 @@ BLOG = {
|
||||||
"commit_url": "https://git.sr.ht/~crocmagnon/blog/commit/{commit_sha}",
|
"commit_url": "https://git.sr.ht/~crocmagnon/blog/commit/{commit_sha}",
|
||||||
"homepage": "https://git.sr.ht/~crocmagnon/blog",
|
"homepage": "https://git.sr.ht/~crocmagnon/blog",
|
||||||
"log": "https://git.sr.ht/~crocmagnon/blog/log",
|
"log": "https://git.sr.ht/~crocmagnon/blog/log",
|
||||||
|
"pipelines_url": "https://gitlab.com/gaugendre/blog/pipelines",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue