NatLibFi/Skosmos

View on GitHub
src/view/about-info.inc.twig

Summary

Maintainability
Test Coverage
{# This is the template for the about page. You can enter any html here and show different language versions by using the lang value in a twig conditional as demonstrated below. #}
{% block content %}
<div id="about-content">
  {% if request.lang == 'fi' %}
    <h2>Tietoja sanastoselaimesta</h2>
    <p>Skosmos on web-pohjainen sanasto ja ontologiaselain.</p>
    <a href="http://github.com/NatLibFi/Skosmos">Skosmos GitHub-repositorio</a>
  {% elseif request.lang == 'sv' %}
    <h4>Information</h4>
    <p>Skosmos är en ontologibrowser.</p>
    <a href="http://github.com/NatLibFi/Skosmos">Skosmos på GitHub</a>
  {% elseif request.lang == 'en' %}
    <h4>About</h4>
    <p>Skosmos is a web based open source ontology browser.</p>
    <a href="http://github.com/NatLibFi/Skosmos">Skosmos GitHub repository</a>
  {% endif %}
</div>
{% endblock %}