suggest.html 324 B

123456
  1. {% for article in articles %}
  2. {# Highlight substring matching #}
  3. {# Keep this a single line to avoid unwanted spaces. #}
  4. <li><a href="/search?q={{ article['id']['value'] }}"><strong>{{ article['id']['value'][:search_term|length] }}</strong>{{ article['id']['value'][search_term|length:] }}</a></li>
  5. {% endfor %}