在kemal app中使用Bootstrap

时间:2017-06-10 10:48:27

标签: crystal-lang kemal

我在 kemal 网络框架中使用crystal-lang创建应用程序。

如何在kemal的app模板中使用style.css或Bootstrap文件?

  • myapp.cr location = src / myapp.cr
  • bootstrap位于= src / public / css / bootstrap.css
  • 布局文件= src / views / layout / standard.ecr

我也试过了完整的路径,但这也行不通。不会加载样式。

这是我的standard.ecr(布局文件)



<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  <title><%= title %> | Crystal Website</title>

  <!-- Bootstrap -->
  <link href="../public/css/bootstrap.css" rel="stylesheet">

  <link href="/css/style.css" rel="stylesheet">

  <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  <!--[if lt IE 9]>
  <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  <![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
  <div class="container">
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">Crystal Website</a>
    </div>
    <div id="navbar" class="navbar-collapse collapse">
      <ul class="nav navbar-nav navbar-right">
        <li
        <% if env.request.path == "/" %>class="active"
        <% end %>><a href="/">Home</a></li>
        <li
        <% if env.request.path == "/about" %>class="active"
        <% end %>><a href="/about">About</a></li>
        <li
        <% if env.request.path == "/contact" %>class="active"
        <% end %>><a href="/contact"> Contact</a></li>
      </ul>
    </div><!--/.nav-collapse -->
  </div>
</nav>

<div class="container">
  <%= content %>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="/js/bootstrap.js"></script>
</body>
</html>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

默认情况下,您的公用文件夹应位于NotificationCenter.default.addObserver(self, selector: #selector(ViewController.rotated), name: NSNotification.Name.UIDeviceOrientationDidChange, object: nil) 路径中,而不是/public

这是文件夹结构

/src/public