You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is perhaps a stupid question, but as a web newbie I am having trouble adding an external link in the navigation. For example, I would like to link to my external blog doing the following (in index.html line 18):
<divid="main"><nav><ul>
{% for node in site.posts reversed %}
{% capture id %}{{ node.id | remove:'/' | downcase }}{% endcapture %}
<liclass="p-{{id}}"><ahref="#{{id}}">{{node.title}}</a></li>
{% endfor %}
<li><ahref="https://haroldpimentel.wordpress.com/" target="_blank">blog</a></li></ul></nav>
The link does not work (and in fact breaks all of the other links in the navigation) and gives the following error in the developer console:
This is perhaps a stupid question, but as a web newbie I am having trouble adding an external link in the navigation. For example, I would like to link to my external blog doing the following (in
index.html
line 18):The link does not work (and in fact breaks all of the other links in the navigation) and gives the following error in the developer console:
Does anyone have any ideas how to fix this?
Thank you,
Harold
The text was updated successfully, but these errors were encountered: