Created
October 6, 2011 07:48
-
-
Save DavidOliver/1266779 to your computer and use it in GitHub Desktop.
Symphony CMS 2.3 backend markup idea
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Symphony – Sections</title> | |
</head> | |
<body> | |
<form action="/symphony/blueprints/sections" method="post"> | |
<header id="header"> | |
<h1><a href="/">Site name</a></h1> | |
<ul id="session"> | |
<li><a href="/symphony/system/users/edit/1/">User name</a></li> | |
<li><a href="/symphony/logout/">Logout</a></li> | |
</ul> | |
<nav id="nav"> | |
<ul> | |
<li id="nav-test">Content | |
<ul> | |
<li><a href="/symphony/publish/content/">Content</a></li> | |
</ul> | |
</li> | |
<li id="nav-system">System | |
<ul> | |
<li><a href="/symphony/system/users/">Users</a></li> | |
<li><a href="/symphony/system/settings/">Settings</a></li> | |
<li><a href="/symphony/system/extensions/">Extensions</a></li> | |
</ul> | |
</li> | |
<li id="nav-blueprints" class="active">Blueprints | |
<ul> | |
<li><a href="/symphony/blueprints/views/">Pages</a></li> | |
<li><a href="/symphony/blueprints/sections/">Sections</a></li> | |
<li><a href="/symphony/blueprints/datasources/">Data Sources</a></li> | |
<li><a href="/symphony/blueprints/events/">Events</a></li> | |
<li><a href="/symphony/blueprints/utilities/">Utilities</a></li> | |
</ul> | |
</li> | |
</ul> | |
</nav> | |
<nav class="breadcrumbs"> | |
<p> | |
<a href="#">Parent 1</a> | |
<a href="#">Parent 2</a> | |
</p> | |
</nav> | |
<h2>Sections</h2> | |
</header> | |
<ul class="actions"> | |
<li><a title="Create a new section" class="button constructive" href="/symphony/blueprints/sections/new/" accesskey="c">Create New</a></li> | |
</ul> | |
<!-- Drawer --> | |
<div id="contents"> | |
<!-- Page content --> | |
</div> | |
<div class="actions"> | |
<!-- Actions --> | |
</div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment