Postfix's Transport Encryption under Control of the User
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.

frontpage.html 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {% extends "core/base.html" %}
  2. {% load staticfiles %}
  3. {% block title %}PostTLS - Postfix's Transport Encryption under Control of the User{% endblock %}
  4. {% block additional_css %}
  5. <style>
  6. h1 {
  7. font-size: 60px;
  8. color: #000079;
  9. margin-top: 50px;
  10. }
  11. hr {
  12. height: 1px;
  13. width: 50%;
  14. color: #cdcdcd;
  15. }
  16. #subtitle {
  17. font-size: 28px;
  18. color: #3a3a3a;
  19. margin-top: 0px;
  20. margin-bottom: 10px;
  21. }
  22. #link_to_project_website {
  23. margin-top: 50px;
  24. font-size: 20px;
  25. }
  26. </style>
  27. {% endblock %}
  28. {% block page_content %}
  29. <!-- Fork me on GitHub Link -->
  30. <a href="https://github.com/suenkler"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
  31. <div class="row">
  32. <div class="col-lg-1"></div>
  33. <div class="col-lg-10">
  34. <center>
  35. <h1>PostTLS</h1>
  36. <hr>
  37. <div id="subtitle">– Postfix's Transport Encryption under Control of the User –</div>
  38. <div id="link_to_project_website">Please find the project page of PostTLS at <a href="https://posttls.com">posttls.com</a>.</div>
  39. </center>
  40. </div>
  41. <div class="col-lg-1"></div>
  42. </div>
  43. {% endblock %}
  44. {% block additional_js %}
  45. {{ block.super }}
  46. {% endblock %}