Remove startbootstrap linking from modals (#148)

This commit is contained in:
Kiran 2022-09-01 17:01:48 +01:00 committed by GitHub
parent 28bb2f9ecd
commit cb09807798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -21,20 +21,17 @@
<ul class="list-inline item-details"> <ul class="list-inline item-details">
{% if post.client %} {% if post.client %}
<li>Client: <li>Client:
<strong><a href="http://startbootstrap.com">{{ post.client }}</a> <strong>{{ post.client }}</strong>
</strong>
</li> </li>
{% endif %} {% endif %}
{% if post.project-date %} {% if post.project-date %}
<li>Date: <li>Date:
<strong><a href="http://startbootstrap.com">{{ post.project-date }}</a> <strong>{{ post.project-date }}</strong>
</strong>
</li> </li>
{% endif %} {% endif %}
{% if post.category %} {% if post.category %}
<li>Service: <li>Service:
<strong><a href="http://startbootstrap.com">{{ post.category }}</a> <strong>{{ post.category }}</strong>
</strong>
</li> </li>
{% endif %} {% endif %}
</ul> </ul>