-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93a9c0b
commit 50a5e4f
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<footer class="site-footer h-card"> | ||
<data class="u-url" href="{{ "/" | relative_url }}"></data> | ||
|
||
<div class="wrapper"> | ||
|
||
<h2 class="footer-heading">{{ site.title | escape }}</h2> | ||
|
||
<div class="footer-col-wrapper"> | ||
<div class="footer-col footer-col-1"> | ||
<ul class="contact-list"> | ||
<li class="p-name"> | ||
{%- if site.author -%} | ||
{{ site.author | escape }} | ||
{%- else -%} | ||
{{ site.title | escape }} | ||
{%- endif -%} | ||
</li> | ||
{%- if site.email -%} | ||
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li> | ||
{%- endif -%} | ||
</ul> | ||
</div> | ||
|
||
<div class="footer-col footer-col-2"> | ||
{%- include social.html -%} | ||
</div> | ||
|
||
<div class="footer-col footer-col-3"> | ||
<p>{{- site.description | escape -}}</p> | ||
<!-- LLNL Vulnerability Disclosure Program (VDP) Footer Link --> | ||
<p style="font-size: 10px;">Operated by the Lawrence Livermore National Security, LLC for the Department of Energy's National Nuclear Security Administration (NNSA). Learn about the Department of Energy's <a href="http://www.energy.gov/vulnerability-disclosure-policy" target="_blank" rel="noopener noreferrer">Vulnerability Disclosure Program</a></p> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
{%- seo -%} | ||
<!-- LLNL Digital Analytics Program (DAP) Compliance --> | ||
<script src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=DOE&subagency=LLNL&sdor=fda.gov&dclink=true"language="javascript" id="_fed_an_ua_tag"></script> | ||
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}"> | ||
{%- feed_meta -%} | ||
{%- if jekyll.environment == 'production' and site.google_analytics -%} | ||
{%- include google-analytics.html -%} | ||
{%- endif -%} | ||
</head> |