index.html 628 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>flow</title>
  5. <style>
  6. .app-selector {
  7. display:flex;
  8. flex-flow:column;
  9. justify-content: center;
  10. align-items: center;
  11. height:100%;
  12. }
  13. .app-selector >* { padding:10px; }
  14. .app-selector-items:first-child { border-right: #000; }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="app-selector">
  19. <img src="sample.png">
  20. <h3> Sample ideas using flow: </h3>
  21. <div class="app-selector-items">
  22. [<a href="/default">Default thing</a>]
  23. [<a href="/gonum">Gonum</a>]
  24. [<a href="/devops">Devops sample</a>]
  25. [<a href="/testops">testing registry</a>]
  26. </div>
  27. </div>
  28. </body
  29. </html>