Skip to content

Commit 92e945d

Browse files
authored
Restore site functionality - Serve External resources (#230)
* Add local boostrap js * Add local boostrap css - downloaded from https://bootswatch.com/3/ - cosmo theme * Add local fontawesome css - downloaded from https://fontawesome.com/v4/ * Add local jquery js - downloaded from https://code.jquery.com/ * Add boostrap fonts. Change dir structure naming for consistency
1 parent 53c07a0 commit 92e945d

16 files changed

+25219
-4
lines changed

_layouts/default.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css" rel="stylesheet" integrity="sha384-h21C2fcDk/eFsW9sC9h0dhokq5pDinLNklTKoxIZRUn3+hvmgQSffLLQ4G4l2eEr" crossorigin="anonymous">
9-
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
8+
<link rel="stylesheet" type="text/css" href="/css/bootstrap/3.4.1/dist/css/bootstrap.css">
9+
<link rel="stylesheet" type="text/css" href="/css/font-awesome/4.7.0/css/font-awesome.css">
1010
<link rel="stylesheet" href="{{ site.baseurl }}/css/fluo.css">
1111
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
1212
<link rel="icon" type="image/png" href="{{ site.baseurl }}/resources/favicon.png">
1313

1414
<title>{% if page.title %}{% if page.html_title_override %}{{ page.title }}{% else %}{{ page.title }} | Apache Fluo{% endif %}{% else %} Apache Fluo {% endif %}</title>
1515

16-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
17-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
16+
<script type="text/javascript" src="/js/jquery/3.7.1/jquery.js"></script>
17+
<script type="text/javascript" src="/js/bootstrap/3.3.7/dist/js/bootstrap.js"></script>
1818
<script type="text/javascript" src="https://www.apachecon.com/event-images/snippet.js"></script>
1919
{% include scripts.html %}
2020
</head>

0 commit comments

Comments
 (0)