templates/default/default.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Example</title>
  6. </head>
  7. <body>
  8. <style type="text/css">
  9. body {
  10. padding:0;
  11. margin: 0;
  12. font-family: "Lucida Sans Unicode", Arial, sans-serif;
  13. font-size: 14px;
  14. }
  15. #site {
  16. margin: 0 auto;
  17. width: 600px;
  18. padding: 30px 0 0 0;
  19. color:#65615E;
  20. }
  21. h1, h2, h3 {
  22. font-size: 18px;
  23. padding: 0 0 5px 0;
  24. border-bottom: 1px solid #001428;
  25. margin-bottom: 5px;
  26. }
  27. h3 {
  28. font-size: 14px;
  29. padding: 15px 0 5px 0;
  30. margin-bottom: 5px;
  31. border-color: #cccccc;
  32. }
  33. img {
  34. border: 0;
  35. }
  36. p {
  37. padding: 0 0 5px 0;
  38. }
  39. a {
  40. color: #000;
  41. }
  42. #logo {
  43. text-align: center;
  44. padding: 50px 0;
  45. }
  46. #logo hr {
  47. display: block;
  48. height: 1px;
  49. overflow: hidden;
  50. background: #BBB;
  51. border: 0;
  52. padding:0;
  53. margin:30px 0 20px 0;
  54. }
  55. .claim {
  56. text-transform: uppercase;
  57. color:#BBB;
  58. }
  59. #site ul {
  60. padding: 10px 0 10px 20px;
  61. list-style: circle;
  62. }
  63. .buttons {
  64. margin-bottom: 100px;
  65. text-align: center;
  66. }
  67. .buttons a {
  68. display: inline-block;
  69. background: #6428b4;
  70. color:#fff;
  71. padding: 5px 10px;
  72. margin-right: 10px;
  73. width:40%;
  74. border-radius: 2px;
  75. text-decoration: none;
  76. }
  77. .buttons a:hover {
  78. background: #1C8BC1;
  79. }
  80. .buttons a:last-child {
  81. margin: 0;
  82. }
  83. </style>
  84. <div id="site">
  85. <div id="logo">
  86. <a href="http://www.pimcore.com/"><img src="/bundles/pimcoreadmin/img/logo-claim-gray.svg" alt="Logo claim grey" style="width: 400px;" /></a>
  87. <hr />
  88. </div>
  89. {% if editmode %}
  90. <div class="buttons">
  91. <a target="_blank" href="https://pimcore.com/docs/6.x/Development_Documentation/Getting_Started/Installation.html">Install Sample Data / Boilerplate</a>
  92. <a target="_blank" href="https://pimcore.com/docs/6.x/Development_Documentation/Getting_Started/index.html">Getting Started</a>
  93. </div>
  94. <div class="info">
  95. <h2>Where can I edit some pages?</h2>
  96. <p>
  97. Well, it seems that you're using the professional distribution of pimcore which doesn't include any
  98. templates / themes or contents, it's designed to start a project from scratch. If you need a jump start
  99. please consider using our sample data / boilerplate package which includes everything you need to get started.
  100. </p>
  101. </div>
  102. {% endif %}
  103. </div>
  104. </body>
  105. </html>