mirror of
https://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
synced 2025-01-28 22:56:18 +00:00
40a8337ab3
Also now serving api/pages as a list page and viewer.
24 lines
793 B
HTML
24 lines
793 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
|
|
<link rel="stylesheet" href="css/obrand.css">
|
|
<title>My page</title>
|
|
</head>
|
|
<body>
|
|
<div class="pure-g">
|
|
<div class="pure-u-1">
|
|
<h1 class="textcenter">My page</h1>
|
|
</div>
|
|
<div id="image" class="pure-u-1"><img src="http://lorempixel.com/300/300" class="centerblock">
|
|
</div>
|
|
<div id="links" class="pure-u-1 pure-menu">
|
|
<ul class="pure-menu-list">
|
|
<li class="pure-menu-item"> <a href="http://www.google.com" class="pure-menu-link textcenter">this is my link</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|