File indexing completed on 2024-05-12 03:53:40

0001 {% extends "base.html" %}
0002 
0003 {% block page_title %}{{title}}{% endblock %}
0004 
0005 {% block head %}
0006 <script type="text/javascript" src="{{resources}}/notetip.js"></script>
0007 <script type="text/javascript" src="{{resources}}/frameworks.js"></script>
0008 <link rel="stylesheet" type="text/css" href="{{resources}}/frameworks.css" />
0009 <script>
0010     $(document).ready(main);
0011 </script>
0012 {% endblock %}
0013 
0014 {% block title %}
0015 KDE Products
0016 {% endblock %}
0017 
0018 {% block content %}
0019 <div class="textblock">
0020   {% for para in intro %}
0021     <p>{{ para }}</p>
0022   {% endfor %}
0023 </div>
0024 
0025 <section class="products px-0">
0026   {% for product in product_list %}
0027     <div class="product my-3 ae-card p-4">
0028       <h2 class="h2 mt-0 mb-3 d-flex">
0029         <a name="prod-{{ product.name }}" href="{{ product.href }}">{{ product.fancyname }}</a>
0030         {% if qch or man %}
0031           <p class="prod-download ml-auto h6">
0032             {% if qch %} [<a href="qch/{{product.name}}.qch">QCH file</a>]{% endif %}
0033             {% if man %} <a href="qch/{{product.name}}.man">MAN</a>{% endif %}
0034           </p>
0035         {% endif %}
0036       </h2>
0037       <div class="d-flex">
0038         <img src="{% if product.logo_url %} {{ product.logo_url }} {% else %}{{resources}}/default_product.png{% endif %}"
0039              style="min-width:80px; width: 80px;" class="align-self-start my-0 mr-4" />
0040         <div>
0041           <p>{{ product.description }}</p>
0042           <div>
0043             <b>Maintainer{% if product.maintainers | length > 1 %}s{% endif %}:</b>
0044             {% for maintainer in product.maintainers %}
0045               <a href="mailto:{{ maintainer.email }}">{{ maintainer.name }}</a>
0046               {% if not loop.last %},{% endif %}
0047             {% else %}
0048               <a href="mailto:kde-devel@kde.org">The KDE Community</a>
0049             {% endfor %}
0050           </div>
0051           {% if product.platforms %}
0052             <p>
0053               <b>Platform{% if product.platforms | length > 1 %}s{% endif %}:</b> {{ product.platforms | sort | join(' | ') }}
0054             </p>
0055           {% endif %}
0056         </div>
0057       </div>
0058     </div>
0059   {% endfor %}
0060 </section>
0061 {% endblock content %}
0062 
0063 {% block sidebar %}
0064   {% include "frontpage-sidebar.html" %}
0065 {% endblock %}