-
Notifications
You must be signed in to change notification settings - Fork 393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugin request: jekyll-target-blank #2235
Comments
Ignore: Adding another which would be useful:
|
Testing with a docker build/run setup (to support plugins/ruby versions easier), and noticed a bug in the header logo: <div class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<a href="/%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20"><img src="/img/monero-logo.png" width="500" height="135" alt="Monero Logo" class="monero-logo" loading="lazy"></a>
</div> after some debugging/head scratching/downgrading ruby / removing plugins i confirmed <div class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<a href="{% if site.lang == 'en' %}
{{ site.baseurl_root }}/
{% else %}
{{ site.baseurl_root }}/{{site.lang}}
{% endif %}"><img src="/img/monero-logo.png" width="500" height="135" alt="Monero Logo" class="monero-logo"></a>
</div>
not needed as above comment shows most browsers have this enabled since 2020 but this would fix it and seems correct liquid scripting practice: <div class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<a href="{% if site.lang == 'en' -%}
{{ site.baseurl_root }}/
{%- else -%}
{{ site.baseurl_root }}/{{site.lang}}
{%- endif %}"><img src="/img/monero-logo.png" width="500" height="135" alt="Monero Logo" class="monero-logo"></a>
</div> |
#2233 (original #2118) hard codes some external links to open in an external window.
jekyll-target-blank
https://github.com/keithmifsud/jekyll-target-blank
https://rubygems.org/gems/jekyll-target-blank
uncovered some issues while testing:
We have bad URI's. To confirm , enter
https://matrix.to/#/#monero:monero.social
@ https://0mg.github.io/tools/uri/It then builds. and after a brief look it seems to work fine.
The text was updated successfully, but these errors were encountered: