feat: truncate description
This commit is contained in:
@@ -19,3 +19,6 @@ function geojson_to_searchable_string(location) {
|
|||||||
return ifdef(location.properties.name, "", ", ") + ifdef(location.properties.street, "", ifdef(location.properties.housenumber, " ",", ")) + ifdef(location.properties.city, "", ", ") + ifdef(location.properties.country, "", "")
|
return ifdef(location.properties.name, "", ", ") + ifdef(location.properties.street, "", ifdef(location.properties.housenumber, " ",", ")) + ifdef(location.properties.city, "", ", ") + ifdef(location.properties.country, "", "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function truncate(str, n, url){
|
||||||
|
return (str.length > n) ? str.slice(0, n-1) + '<a href="' + url + '">…</a>' : str;
|
||||||
|
};
|
||||||
|
@@ -161,7 +161,7 @@
|
|||||||
<div class="column">
|
<div class="column">
|
||||||
<strong><a class="is-size-7" href="${url}">${title}</a></strong><br>
|
<strong><a class="is-size-7" href="${url}">${title}</a></strong><br>
|
||||||
<span><strong>{% translate 'Ort' %}</strong>: ${location_hr}</span><br>
|
<span><strong>{% translate 'Ort' %}</strong>: ${location_hr}</span><br>
|
||||||
<p class="is-size-7">${description}</p>r
|
<p class="is-size-7">${truncate(description, 80, url)}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<figure class="image is-128x128">
|
<figure class="image is-128x128">
|
||||||
|
Reference in New Issue
Block a user