EVOLUTION-MANAGER
Edit File: BasePage.html
<!DOCTYPE html> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html xmlns:wicket="http://wicket.apache.org" wicket:id="html"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <link rel="shortcut icon" href="public/favicon.ico" type="image/x-icon"/> <style type="text/css"> .sk-chasing-dots { margin: 20% auto; width: 80px; height: 80px; position: relative; text-align: center; -webkit-animation: sk-chasingDotsRotate 2s infinite linear; animation: sk-chasingDotsRotate 2s infinite linear; } .sk-chasing-dots .sk-child { width: 40%; height: 40%; display: inline-block; position: absolute; top: 0; background-color: #333; border-radius: 100%; -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out; animation: sk-chasingDotsBounce 2s infinite ease-in-out; } .sk-chasing-dots .sk-dot2 { top: auto; bottom: 0; -webkit-animation-delay: -1s; animation-delay: -1s; } @keyframes sk-chasingDotsRotate { 100% { transform: rotate(360deg); } } @keyframes sk-chasingDotsBounce { 0%, 100% { transform: scale(0); } 50% { transform: scale(1); } } </style> <wicket:header-items/> <title wicket:id="pageTitle">[title]</title> </head> <body> <div wicket:id="main-loader" style="height: 100%;" class="ui-widget-header"> <div class="sk-chasing-dots"> <div class="sk-child sk-dot1"></div> <div class="sk-child sk-dot2"></div> </div> </div> <div wicket:id="header"></div> <wicket:child /> </body> </html>