index-template.html 3.28 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">

	<title>{{page.title}}</title>

	<link rel="stylesheet" href="css/style.css">
	<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
	{{#strings.appledocData}}<meta name="generator" content="{{tool}} {{version}} (build {{build}})">{{/strings.appledocData}}
</head>
<body class="appledoc">
	<header>
		<div class="container">
			{{#page}}
			<h1 id="library-title">
				<a href="https://www.shopify.com/app-developers/mobile-buy-sdk">{{projectName}} {{strings.objectPage.libraryTitlePostfix}}</a>
			</h1>

			<p id="developer-home">
				<a href="https://www.shopify.com">{{projectCompany}}</a>
			</p>
			{{/page}}
		</div>
	</header>

	<aside>
		<div class="container">
			<nav>
				<ul id="header-buttons" role="toolbar">
					{{>Navigation}}
				</ul>
			</nav>
		</div>
	</aside>

	<article>
		<div id="overview-contents" class="container">
			<div id="content">
				<main role="main">
					<h1 class="title">{{page.title}}</h1>

					{{#indexDescription}}
					<div class="section section-overview index-overview">
						{{#comment}}
						{{#hasLongDescription}}
						{{#longDescription}}{{#components}}{{&htmlValue}}{{/components}}{{/longDescription}}
						{{/hasLongDescription}}
						{{/comment}}
					</div>
					{{/indexDescription}}

					<div class="index-container">
						{{#hasDocs}}
						<div class="index-column">
							<h2 class="index-title">{{page.docsTitle}}</h2>
							<ul>
								{{#docs}}
59
								<li><a href="{{href}}">{{title}}</a></li>
60 61 62 63 64 65 66 67 68 69
								{{/docs}}
							</ul>
						</div>
						{{/hasDocs}}

						{{#hasClasses}}
						<div class="index-column">
							<h2 class="index-title">{{strings.indexPage.classesTitle}}</h2>
							<ul>
								{{#classes}}
70
								<li><a href="{{href}}">{{title}}</a></li>
71 72 73 74 75 76 77 78 79 80 81
								{{/classes}}
							</ul>
						</div>
						{{/hasClasses}}

						{{#hasProtocolsOrCategories}}
						<div class="index-column">
							{{#hasProtocols}}
							<h2 class="index-title">{{strings.indexPage.protocolsTitle}}</h2>
							<ul>
								{{#protocols}}
82
								<li><a href="{{href}}">{{title}}</a></li>
83 84 85 86 87 88 89 90
								{{/protocols}}
							</ul>
							{{/hasProtocols}}

							{{#hasConstants}}
							<h2 class="index-title">{{strings.indexPage.constantsTitle}}</h2>
							<ul>
								{{#constants}}
91
									<li><a href="{{href}}">{{title}}</a></li>
92 93 94 95 96 97 98 99
								{{/constants}}
							</ul>
							{{/hasConstants}}

							{{#hasCategories}}
							<h2 class="index-title">{{strings.indexPage.categoriesTitle}}</h2>
							<ul>
								{{#categories}}
100
								<li><a href="{{href}}">{{title}}</a></li>
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
								{{/categories}}
							</ul>
							{{/hasCategories}}
						</div>
						{{/hasProtocolsOrCategories}}
					</div>

					<footer>
						<div class="footer-copyright">
							{{#page}}
							<p class="copyright">Copyright &copy; {{copyrightDate}} {{copyrightHolder}}. All rights reserved. Updated: {{lastUpdatedDate}}</p>
							{{/page}}
							{{#strings.appledocData}}
							<p class="generator">Generated by <a href="{{homepage}}">{{tool}} {{version}} (build {{build}})</a>.</p>
							{{/strings.appledocData}}
						</div>
					</footer>
				</main>
			</div>
		</div>
	</article>

	<script src="js/script.js"></script>
</body>
</html>

Section Navigation
128
<li><a href="hierarchy.html">Hierarchy</a></li>
129
EndSection