magcms/templates/example.html

40 lines
1.3 KiB
HTML
Raw Normal View History

2015-12-03 06:09:29 +01:00
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="../materialize/css/style.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="gallery-header">
2015-12-04 11:22:00 +01:00
<img id="logo" src="../materialize/img/logo.svg" />
<h1>Gallery Name</h1>
2015-12-04 10:29:27 +01:00
<h4>Subtext of the gallery name</h4>
2015-12-03 06:09:29 +01:00
</div>
<div class="galleries-grid">
<div class="galleries-line">
<div class="gallery-square">
2015-12-03 07:26:37 +01:00
<div class="gallery-title">
<h2>First Gallery Title</h2>
<h3>Sub gallery title</h3>
2015-12-04 10:29:27 +01:00
<div class="gallery-datetime">3 march 2015</div>
2015-12-03 07:26:37 +01:00
</div>
2015-12-03 06:09:29 +01:00
<div class="gallery-cover" style="background-image: url('./1.png');"></div>
</div>
<div class="gallery-square">
2015-12-03 07:26:37 +01:00
<div class="gallery-title">
<h2>Second Gallery Title</h2>
<h3>Sub gallery title</h3>
2015-12-04 10:29:27 +01:00
<div class="gallery-datetime">3 march 2015</div>
2015-12-03 07:26:37 +01:00
</div>
2015-12-03 06:09:29 +01:00
<div class="gallery-cover" style="background-image: url('./1.png');"></div>
</div>
</div>
</div>
</body>
</html>