Current section

Files

Jump to
ex_doc lib ex_doc formatter html templates overview_template.eex
Raw

lib/ex_doc/formatter/html/templates/overview_template.eex

<!DOCTYPE html>
<html>
<head>
<title>Overview</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
relpath = '';
if (relpath != '') relpath += '/';
</script>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
</head>
<body>
<script type="text/javascript" charset="utf-8">
if (window.top.frames.main) document.body.className = 'frames';
</script>
<section id="content">
<div class="breadcrumbs"><%= page_breadcrumbs(config, "Overview", "overview.html") %></div>
<h1><%= config.project %> v<%= config.version %></h1>
<ul class="summary_links">
<%= unless Enum.empty?(modules) do %>
<li><a href="#modules_summary">Modules</a></li>
<% end %>
<%= unless Enum.empty?(exceptions) do %>
<li><a href="#exceptions_summary">Exceptions</a></li>
<% end %>
<%= unless Enum.empty?(protocols) do %>
<li><a href="#protocols_summary">Protocols</a></li>
<% end %>
</ul>
<%= unless Enum.empty?(modules) do %>
<h2 id="modules_summary">Modules summary <%= to_top_link() %></h2>
<table class="summary">
<%= for node <- modules, do: overview_entry_template(node) %>
</table>
<% end %>
<%= unless Enum.empty?(exceptions) do %>
<h2 id="exceptions_summary">Exceptions summary <%= to_top_link() %></h2>
<table class="summary">
<%= for node <- exceptions, do: overview_entry_template(node) %>
</table>
<% end %>
<%= unless Enum.empty?(protocols) do %>
<h2 id="protocols_summary">Protocols summary <%= to_top_link() %></h2>
<table class="summary">
<%= for node <- protocols, do: overview_entry_template(node) %>
</table>
<% end %>
</section>
</body>
</html>