feat(about): attach settings to links in about modal

This commit is contained in:
Benedikt Rötsch
2018-01-24 16:34:47 +01:00
committed by Benedikt Rötsch
parent 67a73599bb
commit 2706e31411
2 changed files with 11 additions and 5 deletions

View File

@@ -144,31 +144,31 @@ section.modal#about-this-modal
li
img(src='/images/icon-nodejs.svg')
br
a(href="https://the-example-app-nodejs.herokuapp.com/" rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
a(href=`https://the-example-app-nodejs.herokuapp.com/${queryStringSettings}` rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
br
a(href="https://github.com/contentful/the-example-app.nodejs" rel="noopener" target="_blank") GitHub
li
img(src='/images/icon-dotnet.svg')
br
a(href="https://the-example-app-csharp.herokuapp.com/" rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
a(href=`https://the-example-app-csharp.herokuapp.com/${queryStringSettings}` rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
br
a(href="https://github.com/contentful/the-example-app.csharp" rel="noopener" target="_blank") GitHub
li
img(src='/images/icon-ruby.svg')
br
a(href="https://the-example-app-rb.herokuapp.com/" rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
a(href=`https://the-example-app-rb.herokuapp.com/${queryStringSettings}` rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
br
a(href="https://github.com/contentful/the-example-app.rb" rel="noopener" target="_blank") GitHub
li
img(src='/images/icon-php.svg')
br
a(href="https://the-example-app-php.herokuapp.com/" rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
a(href=`https://the-example-app-php.herokuapp.com/${queryStringSettings}` rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
br
a(href="https://github.com/contentful/the-example-app.php" rel="noopener" target="_blank") GitHub
li
img(src='/images/icon-python.svg')
br
a(href="https://the-example-app-py.herokuapp.com/" rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
a(href=`https://the-example-app-py.herokuapp.com/${queryStringSettings}` rel="noopener" target="_blank")= translate("hostedLabel", currentLocale.code)
br
a(href="https://github.com/contentful/the-example-app.py" rel="noopener" target="_blank") GitHub
li