Add links to footer

This commit is contained in:
wswidzinski 2018-01-13 21:25:04 +01:00
parent 3f9e457e1e
commit ca9fa59470
2 changed files with 7 additions and 5 deletions

View File

@ -35,15 +35,15 @@
"footer": {
"links": [
{
"url": "",
"url": "https://truebit.io",
"title": "Truebit"
},
{
"url": "",
"url": "https://medium.com/artproject-truebit",
"title": "Medium"
},
{
"url": "",
"url": "https://t.me/cryptoartproject",
"title": "Telegram"
},
{
@ -51,7 +51,7 @@
"title": "Newsletter"
},
{
"url": "",
"url": "https://drive.google.com/file/d/1v-1R8juWUIptoO1ND8EZTh3zTcRJPkmG/view",
"title": "Project Proposal"
},
{

View File

@ -2,7 +2,9 @@
<ul class="footer__list">
{{#each data.footer.links as |link|}}
<li class="footer__list-item">
<a class="footer__link" href="{{ link.url }}">{{ link.title }}</a>
<a class="footer__link" href="{{ link.url }}" rel="noopener" target="_blank">
{{ link.title }}
</a>
</li>
{{/each}}
</ul>