nist-software-theme 0.15 → 0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7b835712d1195195060aaa94dcbf5848501d54cc12946e2b5446c0651e1cd74
4
- data.tar.gz: da763fdade6276bc2ffb95cd0b3afa346741a41f9dfc13f51073f2dec31d7327
3
+ metadata.gz: 0bd97ac37eb64c65bfcac5fc77db6c8ab115f6273aac900845843de5b4a4c323
4
+ data.tar.gz: 1f07757f2368def7545f2603f6ec8d546a44916ed0aff02a103409a5b1e7a034
5
5
  SHA512:
6
- metadata.gz: 7be69d6ad131f602dfd0ae22d9fba8fba5e000082dd221b267d4528844e68aed34b0f87bc1ac34924a0000e99a36a075a8c503befd7e4e76e29d197772cd93cf
7
- data.tar.gz: 125595a146f28ab04ea13f131bd95e292b9d80241e03eeb873db7286f5bc210a9cf406b55ff4ec5fdb6d02db74df70f6cdf7c5cb62e194e7157a9f271caf2bd4
6
+ metadata.gz: d1b635ad655b846c54a3a5846a7176fea9e27586b25aec638ed1810fe63404debb516669a0ea8928115402403240fcb31c36be8621844d7e95cb40419da67aea
7
+ data.tar.gz: 1c9fc0f6a4baaf6cbfe64cac7ce465537bd3fba63e1d6bba88f358cfc26173884e3cbb93c83b762b071418e1ce9120667555b6294578f92eaff232f4166592e8
@@ -5,13 +5,11 @@
5
5
 
6
6
  <link rel="shortcut icon" href="./assets/images/favicon.ico">
7
7
 
8
- <link rel="stylesheet" href="./css/bootstrap/3.3./bootstrap.min.css" media="screen">
9
- <link rel="stylesheet" href="./css/font-awesome/4.7.0/font-awesome.min.css" media="screen">
8
+ <link rel="stylesheet" href="./css/bootstrap/3.3.5/bootstrap.min.css" media="screen">
9
+ <link rel="stylesheet" href="./css/font-awesome/font-awesome.min.css" media="screen">
10
10
 
11
11
  <link rel="stylesheet" href="./css/onelab/0.1.1/onelab.css" media="screen">
12
+ <link rel="stylesheet" href="./css/main.css" media="screen">
12
13
 
13
- <link rel="stylesheet" href="./css/css/main.css" media="screen">
14
-
15
- {% include custom_head.html %}
16
14
  {% seo %}
17
15
  </head>
@@ -1,6 +1,6 @@
1
1
  <nav id="header-slim" class="navbar navbar-default">
2
2
 
3
- <div class="container">
3
+ <div>
4
4
  <div class="navbar-header">
5
5
  <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#siteNavbar">
6
6
  <span class="icon-bar"></span>
@@ -9,20 +9,29 @@
9
9
  </button>
10
10
 
11
11
  <p id="nist-menu-tab" class="pull-left"><a href="https://www.nist.gov"></a></p>
12
- <a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
12
+ <a class="navbar-brand" href="/">{{ site.name }}</a>
13
+ <span class="badge" style="color:black;background-color:#f0f0f0;vertical-align: text-top;margin-top: 10px;">{{ site.version }}</span>
13
14
  </div>
14
15
 
15
16
  <div id="siteNavbar" class="collapse navbar-collapse">
16
17
  <ul class="nav navbar-nav navbar-right navbar-collapse">
17
- {% if page.path == "index.md" %} <li class="active"> {% else %} <li> {% endif %}
18
- <a href="{{ site.baseurl }}/">Home</a></li>
19
- {% for node in site.pages reversed %}
20
- {% unless node.path == "index.md" %}
21
- {% if node.url == page.url %} <li class="active"> {% else %} <li> {% endif %}
22
- <a href="{{ node.url | prepend: site.baseurl }}">{{ node.title }}</a></li>
23
- {% endunless %}
24
- {% endfor %}
25
- <li id="github"><a href="https://github.com/usnistgov/opensource"><span class="fa fa-github fa-lg"></span></a></li>
18
+ <li id="data-portal">
19
+ <a class="navbar-normal" href="https://data.nist.gov" target="_blank">Data Portal</a></li>
20
+ <li id="explore"
21
+ {% if page.url == "/explore/" %} class="active"
22
+ {% endif %}><a class="navbar-normal" href="/explore/">Explore</a></li>
23
+
24
+ <li id="about"
25
+ {% if page.url == "/about/" %} class="active dropdown"
26
+ {% else %} class="dropdown"
27
+ {% endif %}><a class="navbar-normal" href="/about/">About</a>
28
+ <div class="dropdown-content">
29
+ <p><a class="navbar-normal" href="/about/using-github/">Using GitHub</a></p>
30
+ <p><a class="navbar-normal" href="/about/licenses/">Licensing</a></p>
31
+ <p><a class="navbar-normal" href="https://github.com/usnistgov/opensource">This Site</a></p>
32
+ </div>
33
+ </li>
34
+ <li id="github"><a href="https://github.com/usnistgov"><span class="fa fa-github fa-lg"></span></a></li>
26
35
  </ul>
27
36
  </div>
28
37
 
@@ -1,20 +1,17 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
3
 
4
- {% include head.html %}
4
+ {% include head.html %}
5
5
 
6
- <body>
6
+ <body class="static-text">
7
7
 
8
- {% include header.html %}
8
+ {% include header.html %}
9
9
 
10
- <div class="container">
11
- {% include breadcrumbs.html %}
12
- {{ content }}
13
- </div>
10
+ {{ content }}
14
11
 
15
- {% include footer.html %}
12
+ {% include footer.html %}
16
13
 
17
- {% include scripts.html %}
14
+ {% include scripts.html %}
18
15
 
19
- </body>
16
+ </body>
20
17
  </html>
@@ -8,7 +8,7 @@
8
8
  {% include header.html %}
9
9
 
10
10
  <div>
11
- <div class="banner"/>
11
+ <div style="background-image: url('https://data.nist.gov/sdp/assets/images/sdp-background.jpg'); background-position-y: 65%; background-repeat: no-repeat;background-size: 100%;"><div class="banner"></div></div>
12
12
  </div>
13
13
 
14
14
  <div class="container">
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nist-software-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.15'
4
+ version: '0.16'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Faical Yannick P. Congo