Skip to content

Commit

Permalink
Add create project issue link
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifsalah committed Jul 9, 2019
1 parent 0e5c670 commit 4d14b47
Show file tree
Hide file tree
Showing 57 changed files with 118 additions and 494 deletions.
3 changes: 2 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ theme = ["docsy"]
enableGitInfo = true

# Language settings
contentDir = "content/en"
contentDir = "content"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
# Useful when translating.
Expand Down Expand Up @@ -86,6 +86,7 @@ time_format_blog = "02.01.2006"
copyright = "Copyright Contributors to the OpenCue Project"
privacy_policy = "https://lfprojects.org/policies/privacy-policy/"
github_repo = "https://github.com/AcademySoftwareFoundation/opencue.io"
github_project_repo = "https://github.com/AcademySoftwareFoundation/OpenCue"

# Google Custom Search Engine ID. Remove or comment out to disable search.
gcs_engine_id = "006268731659284851556:qwtylsm1rlc"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
19 changes: 19 additions & 0 deletions layouts/partials/page-meta-links.html
Original file line number Diff line number Diff line change
@@ -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/content/%s" $gh_repo .Path }}
{{ if .Site.IsMultiLingual }}
{{ $editURL = printf "%s/edit/master/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/choose" $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 }}
Loading

0 comments on commit 4d14b47

Please sign in to comment.