-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a content bundle for the master layout. Start modifying the ma…
…ster layout to leverage it
- Loading branch information
lmarkus
committed
Dec 4, 2013
1 parent
a803626
commit b6830ab
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
master.storeName=The Kraken Store | ||
master.buy=Buy our products! | ||
master.edit=Product Editor | ||
master.cart=View Cart |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="en" class="nm-np"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta charset="utf-8"/> | ||
<title>{+title /}</title> | ||
<link rel="stylesheet" href="css/app.css" /> | ||
<link rel="stylesheet" href="css/app.css"/> | ||
</head> | ||
<body> | ||
<div id="wrapper"> | ||
<body class="nm-np"> | ||
<header class="grey"> | ||
<div class="wrapper"> | ||
<h1>{@pre type="content" key="master.storeName"/}</h1> | ||
<nav> | ||
<ul class="nm-np inline"> | ||
<li><a href="/">{@pre type="content" key="master.buy"/}</a></li> | ||
<li><a href="/products">{@pre type="content" key="master.edit"/}</a></li> | ||
<li><a href="/cart">{@pre type="content" key="master.cart"/}</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
<div class="wrapper"> | ||
{+body /} | ||
</div> | ||
|
||
<div id="tentacle"></div> | ||
</body> | ||
</html> | ||
</html> |