Commit a7526f17 by Alex Bush

wiki

1 parent fde21ea3
......@@ -29,6 +29,15 @@ get '/download' => sub {
);
};
get '/wiki' => sub {
my $self = shift;
$self->render(
template => 'wiki',
layout => 'default',
);
};
get '/admin' => sub {
my $self = shift;
......
<!doctype html>
<html>
<head>
<title><%= title %></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/css/style.css" rel="stylesheet" media="screen">
<script src="http://code.jquery.com/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#"><%= title %></a>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="/download">Download</a></li>
<li><a href="/download">wiki</a></li>
</ul>
</div>
</div>
<div id="wrapper" class="container well">
<%= content %>
</div>
</body>
</html>
\ No newline at end of file
<div class="well">
<h2>Установка игры:</h2>
<p>Архив представляет собой две вложенные папки:
<code>minecraft</code> и <code>.minecraft</code> (с точкой):
</p>
<code>minecraft-1.5.1-linux.zip</code><br>
&emsp;<code>minecraft</code><br>
&emsp;<code>.minecraft</code><br>
<br>
<p>Для установки игры необходимо распаковать архив.
Папку <code>.minecraft</code> (с точкой в названии) положить в:
<ul>
<li>Для Linux: <code>~/</code> (в домашнюю директорию)</li>
<li>Для Windows: <code></code></li>
</ul>
</p>
</div>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!