小编And*_*oga的帖子

Jekyll服务不起作用:看起来你没有安装pygments或其中一个依赖项

Configuration file: /Users/andrechristoga/Documents/type-theme/_config.yml
       Deprecation: You appear to have pagination turned on, but you haven't included the `jekyll-paginate` gem. Ensure you have `gems: [jekyll-paginate]` in your configuration file.
            Source: /Users/andrechristoga/Documents/type-theme
       Destination: /Users/andrechristoga/Documents/type-theme/_site
 Incremental build: disabled. Enable with --incremental
      Generating... 
  Dependency Error: Yikes! It looks like you don't have pygments or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- …
Run Code Online (Sandbox Code Playgroud)

pygments jekyll

39
推荐指数
1
解决办法
1万
查看次数

Bootstrap导航选项卡:活动类不起作用

这是HTML代码:

<div class="process">
      <h2 style="text-transform: uppercase;">The Application Process</h2>
      <br><br>
      <div class="row">
        <div class="col-md-3" align="left">
          <ul class="nav nav-pills flex-column" id="myTab" role="tablist">
            <li class="nav-item">
              <a class="nav-link active" data-toggle="tab" href="#home" role="tab" aria-controls="home">Home</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" data-toggle="tab" href="#profile" role="tab" aria-controls="profile">Profile</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" data-toggle="tab" href="#messages" role="tab" aria-controls="messages">Messages</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" data-toggle="tab" href="#settings" role="tab" aria-controls="settings">Settings</a>
            </li>
          </ul>              
        </div>
        <div class="col-md-9">
          <div class="tab-content">
            <div class="tab-pane active" id="home" role="tabpanel">a</div>
            <div class="tab-pane" id="profile" role="tabpanel">b</div>
            <div class="tab-pane" id="messages" role="tabpanel">c</div>
            <div class="tab-pane" id="settings" role="tabpanel">d</div> …
Run Code Online (Sandbox Code Playgroud)

html javascript jquery twitter-bootstrap bootstrap-4

0
推荐指数
1
解决办法
2804
查看次数