open links in new tab
This commit is contained in:
parent
856cff9ee3
commit
50e1ed1a4e
4 changed files with 4 additions and 3 deletions
|
|
@ -7,4 +7,5 @@
|
||||||
<li><a href="/links">links</a></li>
|
<li><a href="/links">links</a></li>
|
||||||
<li><a href="/contact">contact</a></li>
|
<li><a href="/contact">contact</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<div id="nav-hover" class="box"></div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ lastfm: false
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<marquee behavior="scroll" direction="left">
|
<marquee behavior="scroll" direction="left">
|
||||||
<a href="https://www.youtube.com/embed/w1dXpAJ1qfA"><img src="/img/Witch-on-broom.gif" alt=""></a>
|
<a href="https://www.youtube.com/embed/w1dXpAJ1qfA" target="_blank"><img src="/img/Witch-on-broom.gif" alt=""></a>
|
||||||
</marquee>
|
</marquee>
|
||||||
{% include "footer.njk" %}
|
{% include "footer.njk" %}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ lastfm: true
|
||||||
<h2>please visit...</h3>
|
<h2>please visit...</h3>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
{% for button in 88x31.buttons.people.slice(0, 5) %}
|
{% for button in 88x31.buttons.people.slice(0, 5) %}
|
||||||
<a href="{{ button.link }}" title="{{ button.name }}">
|
<a href="{{ button.link }}" target="_blank" title="{{ button.name }}">
|
||||||
{% if button.image.startsWith("http") %}
|
{% if button.image.startsWith("http") %}
|
||||||
<img src="{{ button.image }}" alt="{{ button.name }}">
|
<img src="{{ button.image }}" alt="{{ button.name }}">
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ const getTrack = async () => {
|
||||||
|
|
||||||
document.getElementById("listening").innerHTML = `
|
document.getElementById("listening").innerHTML = `
|
||||||
<div class="now-playing-wrapper box">
|
<div class="now-playing-wrapper box">
|
||||||
<h2>last played</h2>
|
<h2>listening to:</h2>
|
||||||
<div id="np">
|
<div id="np">
|
||||||
<img src="${json.track.image[1]['#text']}">
|
<img src="${json.track.image[1]['#text']}">
|
||||||
<div id="trackInfo">
|
<div id="trackInfo">
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue