-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from dlemire60/main
Home page & layout HTML tuning
- Loading branch information
Showing
3 changed files
with
21 additions
and
27 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 |
---|---|---|
@@ -1,23 +1,17 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | ||
|
||
<title>OpenC2</title> | ||
<meta name="description" content="OpenC2 is a standardized language for the command and control of technologies that provide or support cyber defenses."> | ||
<meta name="keywords" content="OpenC2, Opensource, OASIS, TAXII, STIXX"> | ||
<meta name="robots" content="index, follow"> | ||
|
||
<!-- Favicons --> | ||
<link href="{{ site.baseurl }}/assets/img/favicon.png" rel="icon"> | ||
<link href="{{ site.baseurl }}/assets/img/apple-touch-icon.png" rel="apple-touch-icon"> | ||
|
||
<!-- Vendor CSS Files --> | ||
<link href="{{ site.baseurl }}/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/icofont/icofont.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/animate.css/animate.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/aos/aos.css" rel="stylesheet"> | ||
|
||
<!-- Template Main CSS File --> | ||
<link href="{{ site.baseurl }}/assets/css/style.css" rel="stylesheet"> | ||
</head> | ||
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | ||
<title>OpenC2</title> | ||
<meta name="description" content="OpenC2 is a standardized language for the command and control of technologies that provide or support cyber defenses."> | ||
<meta name="keywords" content="OpenC2, Opensource, OASIS, TAXII, STIXX"> | ||
<meta name="robots" content="index, follow"> | ||
<!-- Favicons --> | ||
<link href="{{ site.baseurl }}/assets/img/favicon.png" rel="icon"> | ||
<link href="{{ site.baseurl }}/assets/img/apple-touch-icon.png" rel="apple-touch-icon"> | ||
<!-- Vendor CSS Files --> | ||
<link href="{{ site.baseurl }}/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/icofont/icofont.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/animate.css/animate.min.css" rel="stylesheet"> | ||
<link href="{{ site.baseurl }}/assets/vendor/aos/aos.css" rel="stylesheet"> | ||
<!-- Template Main CSS File --> | ||
<link href="{{ site.baseurl }}/assets/css/style.css" rel="stylesheet"> |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!DOCTYPE html> | ||
<html class="no-js"> | ||
<html class="no-js" lang="en"> | ||
<head> | ||
{% include header.html %} | ||
</head> | ||
|