beta_warning.html 863 B

12345678910111213141516171819202122232425262728293031
  1. {% if aws_bucket != "docs.docker.io" %}
  2. <style>
  3. .bs-callout {
  4. padding: 20px;
  5. border-left: 3px solid rgb(238, 238, 238);
  6. width: 100% !important;
  7. }
  8. .bs-callout p {
  9. margin-bottom: 0 !important;
  10. }
  11. .bs-callout h4 span {
  12. font-style: italic;
  13. font-weight: bold;
  14. }
  15. .bs-callout-danger {
  16. background-color: rgb(253, 247, 247);
  17. border-color: rgb(217, 83, 79);
  18. }
  19. .bs-callout h4 {
  20. margin-top: 0;
  21. margin-bottom: 5px;
  22. color: rgb(217, 83, 79);
  23. }
  24. </style>
  25. <div class="bs-callout bs-callout-danger">
  26. <h4>This is the
  27. <span>{% if docker_version != docker_version|replace("-dev", "bingo") %}{{ docker_branch }} development branch{% else %}beta{% endif %}</span>
  28. documentation for Docker version {{ docker_version }}.</h4>
  29. Please go to <a href="http://docs.docker.io">http://docs.docker.io</a> for the current Docker release documentation.
  30. </div>
  31. {% endif %}