index.html 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. {% extends "layout.html" %}
  2. {% block container %}
  3. <div id="homepage" class="row-fluid">
  4. <div class="span9">
  5. <div id="map"></div>
  6. <script type="text/javascript">
  7. var map = new ol.Map({
  8. target: 'map',
  9. layers: [
  10. new ol.layer.Tile({
  11. source: new ol.source.OSM()
  12. })
  13. ],
  14. view: new ol.View({
  15. center: ol.proj.fromLonLat([3.164, 46.815]),
  16. zoom: 5
  17. })
  18. });
  19. </script>
  20. </div>
  21. <div class="span3">
  22. <div class="well well-large" style="padding: 10px;">
  23. <h4>{{ _("About the database") }}</h4>
  24. <p>{% trans %}This page was created by the <a href="http://www.ffdn.org/en/">FDN Federation</a> in an effort to gather information about ISPs sharing its values around the world. The FDN Federation unite more than 20 non-profit ISPs in France, all of which respect and promote <a href="https://en.wikipedia.org/wiki/Network_neutrality">Net Neutrality</a> and are volunteer-based. You can learn more about what we stand for on <a href="http://www.ffdn.org/en/principles">our website</a>.{% endtrans %}</p>
  25. <p>{% trans %}We hope that this page help you find an ISP near you. If there aren't any, we encourage you to start your own, and come tell us about it.{% endtrans %}</p>
  26. <p>{% trans %}If you are member of an ISP sharing our values and are interested in appearing on this page, just follow the guide:{% endtrans %}</p>
  27. <p class="text-center"><a class="btn btn-primary" href="{{ url_for('.add_project') }}">{{ _("Add my project") }}</a></p>
  28. </div>
  29. </div>
  30. </div>
  31. {%- endblock %}