mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sample Webpage</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="stylesheet" type="text/css" href="/styles/main.css">
|
|
<script type="text/javascript" src="/components/bootstap-sass/vendor/assets/javascripts/bootstrap/bootstrap.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="row clearfix">
|
|
<div class="col-md-12 column">
|
|
<div class="jumbotron">
|
|
<h1>
|
|
Hello, world!
|
|
</h1>
|
|
<p>
|
|
This is a sample website using the Heroku Multi Buildpack on Dokku. It uses the python, ruby, and node buildpacks. The node buildpack is for using bower and grunt. The ruby buildpack is for running compass. And last but not last, the python buildpack is to run the flask application.
|
|
</p>
|
|
<p>
|
|
<a class="btn btn-primary btn-large" href="#">Learn more</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|