mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-07-15 06:05:47 +00:00
change name= to id= in <a> tags
This commit is contained in:
@ -37,7 +37,7 @@ hastr: true
|
||||
{% endif %}
|
||||
{% assign month = post.date | date: "%Y" %}
|
||||
<i>{{ post.date | date_to_string }}</i> »
|
||||
<a href="#{{ post.short }}" class="anchor" name="{{ post.short }}"><span class="octicon octicon-link"></span></a>
|
||||
<a href="#{{ post.short }}" class="anchor" id="{{ post.short }}"><span class="octicon octicon-link"></span></a>
|
||||
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> ({{ post.tags }})<br>
|
||||
{% endfor %}
|
||||
</blockquote>
|
||||
|
@ -11,7 +11,7 @@ hastr: true
|
||||
<header>
|
||||
<h1>{{ page.title }}</h1>
|
||||
<h3>
|
||||
<a href="#archive" class="anchor" name="archive"><span class="octicon octicon-link"></span></a>
|
||||
<a href="#archive" class="anchor" id="archive"><span class="octicon octicon-link"></span></a>
|
||||
<a href="/blog/archive" title="Archive">Archive</a>
|
||||
</h3>
|
||||
</header>
|
||||
@ -19,7 +19,7 @@ hastr: true
|
||||
|
||||
{% for post in site.categories.en limit:10 %}
|
||||
<h1>
|
||||
<a href="#{{ post.short }}" class="anchor" name="{{ post.short }}"><span class="octicon octicon-link"></span></a>
|
||||
<a href="#{{ post.short }}" class="anchor" id="{{ post.short }}"><span class="octicon octicon-link"></span></a>
|
||||
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
|
||||
</h1>
|
||||
<p><i>{{ post.date | date_to_string }}</i></p>
|
||||
|
Reference in New Issue
Block a user