FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitstua.github.io/_includes/footer-scripts.html at main · gitstua/gitstua.github.io · GitHub
gitstua
/
gitstua.github.io
Public
forked from
daattali/beautiful-jekyll
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
3
Pull requests
5
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
gitstua.github.io
/
_includes
/
footer-scripts.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (30 loc) · 965 Bytes
Breadcrumbs
gitstua.github.io
/
_includes
/
footer-scripts.html
Copy path
File metadata and controls
34 lines (30 loc) · 965 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% if layout.common-ext-js %}
{% for js in layout.common-ext-js %}
{% include ext-js.html js=js %}
{% endfor %}
{% endif %}
{% if page.ext-js %}
{% for js in page.ext-js %}
{% include ext-js.html js=js %}
{% endfor %}
{% endif %}
{% if page.js %}
{% for js in page.js %}
<
script
src
="
{{ js | prepend: site.baseurl | replace: '//', '/' }}
"
>
</
script
>
{% endfor %}
{% endif %}
{% if layout.common-js %}
{% for js in layout.common-js %}
<!-- doing something a bit funky here because I want to be careful not to include JQuery twice! -->
{% if js contains 'jquery' %}
<
script
>
if
(
typeof
jQuery
==
'undefined'
)
{
document
.
write
(
'<script src="{{ js | prepend: site.baseurl | replace: "//", "/" }}"></scr'
+
'ipt>'
)
;
}
</
script
>
{% else %}
<
script
src
="
{{ js | prepend: site.baseurl | replace: '//', '/' }}
"
>
</
script
>
{% endif %}
{% endfor %}
{% endif %}
{% include google_analytics.html %}
Back
|
FazBrowse Home
|
New Git URL