diff options
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/logging.html')
-rw-r--r-- | mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/logging.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/logging.html b/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/logging.html new file mode 100644 index 0000000000..af68c7c634 --- /dev/null +++ b/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/logging.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <link rel="stylesheet" type="text/css" href="./readme.css" > + <title>Read Me</title> + <script src="//code.jquery.com/jquery.min.js"></script> +</head> +<body> + <div id="page-wrapper"> + <div id="page-setup"></div> + <div id="right-col"> + <ul> + <li class="title"> + <p>Logging</p> + </li> + <li class="info-title"> + <p>Information Title</p> + </li> + <li class="info"> + <p>Information</p> + </li> + </ul> + </div> + </div> + <script> + $.get("page.html", function(data){ + $("#page-setup").replaceWith(data); + }); + $(window).load(function() { + $("body").fadeIn(.5); + }); + </script> +</body> +</html> |