#157 Fix edit links, add buttons on index page

This commit is contained in:
Jakub Al-Khalili 2019-10-25 10:50:18 +02:00 committed by Paweł Prażak
parent ee4ba0f6e1
commit 3a6cfe13f6
3 changed files with 33 additions and 2 deletions

View File

@ -18,3 +18,15 @@
width: 77.5%; width: 77.5%;
} }
div.row {
div.col-lg-4 {
p {
a {
font-size: 90%;
background-color: #EAAA2C;
padding: 10px 12px;
color: whitesmoke;
}
}
}
}

View File

@ -61,8 +61,8 @@ Prevent loss of job history
{{< blocks/section >}} {{< blocks/section >}}
{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/jenkinsci/kubernetes-operator" %}} {{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/jenkinsci/kubernetes-operator/pulls" %}}
We do a [Pull Request](https://github.com/jenkinsci/kubernetes-operator/pulls) contributions workflow on **GitHub**. New users are always welcome! We do a Pull Request contributions workflow on **GitHub**. New users are always welcome!
{{% /blocks/feature %}} {{% /blocks/feature %}}
{{% blocks/feature icon="fas fa-folder-open" title="Documentation" url="/kubernetes-operator/docs" %}} {{% blocks/feature icon="fas fa-folder-open" title="Documentation" url="/kubernetes-operator/docs" %}}

View File

@ -0,0 +1,19 @@
{{ if .Path }}
{{ $gh_repo := ($.Param "github_repo") }}
{{ $gh_project_repo := ($.Param "github_project_repo") }}
{{ if $gh_repo }}
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
{{ $editURL := printf "%s/edit/master/website/content/en/%s" $gh_repo .Path }}
{{ if .Site.IsMultiLingual }}
{{ $editURL = printf "%s/edit/master/website/content/%s/%s" $gh_repo ($.Site.Language.Lang) .Path }}
{{ end }}
{{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (htmlEscape $.Title )}}
<a href="{{ $editURL }}" target="_blank"><i class="fa fa-edit fa-fw"></i> {{ T "post_edit_this" }}</a>
<a href="{{ $issuesURL }}" target="_blank"><i class="fab fa-github fa-fw"></i> {{ T "post_create_issue" }}</a>
{{ if $gh_project_repo }}
{{ $project_issueURL := printf "%s/issues/new" $gh_project_repo }}
<a href="{{ $project_issueURL }}" target="_blank"><i class="fas fa-tasks fa-fw"></i> {{ T "post_create_project_issue" }}</a>
{{ end }}
</div>
{{ end }}
{{ end }}