116 lines
3.9 KiB
Plaintext
116 lines
3.9 KiB
Plaintext
#
|
|
# Derived from AsciiDoc example website.
|
|
# Three division CSS based layout (layout2).
|
|
#
|
|
# Simulated frames using CSS (fixed banner and menu, scrolling content).
|
|
# NOTE: This layout does not work with IE6.
|
|
#
|
|
# +-----------------------------------------------------+
|
|
# | #layout-banner |
|
|
# +--------------+--------------------------------------+
|
|
# | | |
|
|
# | | |
|
|
# | #layout-menu | #layout-content |
|
|
# | | |
|
|
# | | |
|
|
# | | |
|
|
# +--------------+--------------------------------------+
|
|
#
|
|
# Each of the three divisions is enclosed in a same-named *-box division
|
|
# which position and size the layout.
|
|
#
|
|
# - The #layout-content division is a container for AsciiDoc page documents.
|
|
# - Documents rendered in the #layout-content use the standard AsciiDoc
|
|
# xhtml11 backend stylesheets.
|
|
|
|
[header]
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={encoding}" />
|
|
<meta name="generator" content="AsciiDoc {asciidoc-version}" />
|
|
<title>{title}</title>
|
|
{title%}<title>{doctitle=}</title>
|
|
<link rel="stylesheet" href="{stylesdir=lib}/v35.css" type="text/css" />
|
|
{doctype-manpage}<link rel="stylesheet" href="{stylesdir=lib}/{theme=asciidoc}-manpage.css" type="text/css" />
|
|
ifdef::quirks[]
|
|
<link rel="stylesheet" href="{stylesdir=lib}/xhtml11-quirks.css" type="text/css" />
|
|
endif::quirks[]
|
|
<link rel="stylesheet" href="{stylesdir=lib}/layout2v35.css" type="text/css" />
|
|
<script type="text/javascript" src="{scriptsdir=lib}/asciidoc.js"></script>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
asciidoc.install({toc?{toclevels}});
|
|
/*]]>*/
|
|
</script>
|
|
ifdef::asciimath[]
|
|
<script type="text/javascript" src="{scriptsdir=lib}/ASCIIMathML.js"></script>
|
|
endif::asciimath[]
|
|
ifdef::latexmath[]
|
|
<script type="text/javascript" src="{scriptsdir=lib}/LaTeXMathML.js"></script>
|
|
endif::latexmath[]
|
|
</head>
|
|
<body{max-width? style="max-width:{max-width}"}>
|
|
<div id="layout-menu-box">
|
|
<div id="layout-menu">
|
|
<div>»<a href="index.html">Home</a></div>
|
|
<div>»<a href="examples.html">Examples</a></div>
|
|
<div>»<a href="scc.html">Invocation</a></div>
|
|
<div>»<a href="runtime.html">Runtime Library</a></div>
|
|
<div>»<a href="python.html">Python Bindings</a></div>
|
|
<div>»<a href="issues.html">Known Issues</a></div>
|
|
</div>
|
|
</div>
|
|
<div id="layout-content-box">
|
|
<div id="layout-banner">
|
|
<div id="layout-title">Shellcode Compiler</div>
|
|
<div id="layout-description">A custom shellcode compiler for Binary Ninja</div>
|
|
</div>
|
|
<div id="layout-content">
|
|
# Article, book header.
|
|
ifndef::doctype-manpage[]
|
|
<div id="header">
|
|
<h1>{doctitle}</h1>
|
|
<span id="author">{author}</span><br />
|
|
<span id="email"><tt><<a href="mailto:{email}">{email}</a>></tt></span><br />
|
|
{authored}<span id="revision">version {revnumber}{revdate?,}</span>
|
|
{authored}{revdate}
|
|
ifdef::toc[]
|
|
<div id="toc">
|
|
<div id="toctitle">Table of Contents</div>
|
|
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
|
|
</div>
|
|
endif::toc[]
|
|
</div>
|
|
endif::doctype-manpage[]
|
|
# Man page header.
|
|
ifdef::doctype-manpage[]
|
|
<div id="header">
|
|
<h1>
|
|
{doctitle} Manual Page
|
|
</h1>
|
|
ifdef::toc[]
|
|
<div id="toc">
|
|
<div id="toctitle">Table of Contents</div>
|
|
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
|
|
</div>
|
|
endif::toc[]
|
|
<h2>NAME</h2>
|
|
<div class="sectionbody">
|
|
<p>{manname} -
|
|
{manpurpose}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
endif::doctype-manpage[]
|
|
<div id="content">
|
|
|
|
[footer]
|
|
</div>
|
|
{disable-javascript%<div id="footnotes"><hr /></div>}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|