Update search_index.json file
This commit modifies the search_index.json file. It likely reflects changes in the indexed data for search functionality.
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
</div>-->
|
||||
|
||||
<h2 class="md-post__title">
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
<a href="{{ post.url | replace('blog/', '') }}">{{ post.title }}</a>
|
||||
</h2>
|
||||
|
||||
<!-- Post-Excerpt hinzufügen -->
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
<br />
|
||||
|
||||
<a href="{{ post.url }}" class="md-button">Weiterlesen</a>
|
||||
<a href="{{ post.url | replace('blog/', '') }}" class="md-button">Weiterlesen</a>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@@ -31,13 +31,13 @@
|
||||
</header>
|
||||
<div class="md-post__content md-typeset">
|
||||
<h2>
|
||||
<a href="{{ post.url | url }}">{{ post.config.title }}</a>
|
||||
<a href="{{ post.url | replace('blog/', '') | url }}">{{ post.config.title }}</a>
|
||||
</h2>
|
||||
|
||||
<!-- Wir zeigen nur die Überschrift an, kein Excerpt oder weiterer Inhalt -->
|
||||
|
||||
<nav class="md-post__action">
|
||||
<a href="{{ post.url | url }}" class="md-button">
|
||||
<a href="{{ post.url | replace('blog/', '') | url }}" class="md-button">
|
||||
Weiterlesen
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user