You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
548 B

4 years ago
4 years ago
  1. <div class="col-xs-12 col-sm-6 col-md-6 col-lg-4 mb-4">
  2. <div class="card" onclick="goToLink('{{ app['link'] }}');">
  3. <div class="card-body">
  4. {% if app['image'] is defined %}
  5. <img src="{{url_for('.static', filename='images/' )}}{{ app['image'] }}" class="card-img" style="float:left; width: 25% !important; padding-right: 1.25rem;">
  6. {% endif %}
  7. <h5 class="card-title">{{ app['name'] }}</h5>
  8. <p class="card-text">{{ app['description'] }}</p>
  9. </div>
  10. </div>
  11. </div>