diff options
author | neodarz <neodarz@neodarz.net> | 2017-01-24 17:09:18 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-01-24 17:09:18 +0100 |
commit | 033d07a519bac03fdfd28ca15e09cc287e80fd14 (patch) | |
tree | d623a1806c64ad84d7c88b0762ae6eb26ed14ce0 /web/templates/page | |
download | the_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.tar.xz the_transcriber_backend-033d07a519bac03fdfd28ca15e09cc287e80fd14.zip |
Initial commit with non-functional pieces of code about file upload
Diffstat (limited to 'web/templates/page')
-rw-r--r-- | web/templates/page/index.html.eex | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/web/templates/page/index.html.eex b/web/templates/page/index.html.eex new file mode 100644 index 0000000..8ff4b81 --- /dev/null +++ b/web/templates/page/index.html.eex @@ -0,0 +1,36 @@ +<div class="jumbotron"> + <h2><%= gettext "Welcome to %{name}", name: "Phoenix!" %></h2> + <p class="lead">A productive web framework that<br />does not compromise speed and maintainability.</p> +</div> + +<div class="row marketing"> + <div class="col-lg-6"> + <h4>Resources</h4> + <ul> + <li> + <a href="http://phoenixframework.org/docs/overview">Guides</a> + </li> + <li> + <a href="https://hexdocs.pm/phoenix">Docs</a> + </li> + <li> + <a href="https://github.com/phoenixframework/phoenix">Source</a> + </li> + </ul> + </div> + + <div class="col-lg-6"> + <h4>Help</h4> + <ul> + <li> + <a href="http://groups.google.com/group/phoenix-talk">Mailing list</a> + </li> + <li> + <a href="http://webchat.freenode.net/?channels=elixir-lang">#elixir-lang on freenode IRC</a> + </li> + <li> + <a href="https://twitter.com/elixirphoenix">@elixirphoenix</a> + </li> + </ul> + </div> +</div> |