mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-13 00:39:45 +00:00
Merge branch 'master' of https://github.com/hivickylai/hugo-theme-introduction
This commit is contained in:
commit
65b49aa8c8
34 changed files with 2825 additions and 30 deletions
|
@ -27,6 +27,7 @@ canonifyurls = true # Turns relative urls in
|
||||||
pygmentsCodefences = true
|
pygmentsCodefences = true
|
||||||
footertext = "" # Text to show in footer (overrides default text)
|
footertext = "" # Text to show in footer (overrides default text)
|
||||||
fadein = true # Turn on/off the fade-in effect
|
fadein = true # Turn on/off the fade-in effect
|
||||||
|
customCSS = [] # Include custom css files e.g. ["css/foo.css", "css/bar.css"]
|
||||||
|
|
||||||
showblog = true # Show Blog section on home page
|
showblog = true # Show Blog section on home page
|
||||||
showprojects = true # Show Projects section on home page
|
showprojects = true # Show Projects section on home page
|
||||||
|
@ -55,4 +56,4 @@ canonifyurls = true # Turns relative urls in
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
url = "https://linkedin.com/"
|
url = "https://linkedin.com/"
|
||||||
icon = "linkedin"
|
icon = "linkedin"
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<!-- Ranges through content/post/*.md -->
|
<!-- Ranges through content/post/*.md -->
|
||||||
{{ range .Data.Pages.ByPublishDate }} {{ if not (eq .Section "blog") }}
|
{{ range .Data.Pages.ByPublishDate }} {{ if not (eq .Section "blog") }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{.Permalink}}">{{.Date.Format .Site.Params.dateForm }} | {{.Title}}</a>
|
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }} {{ end }}
|
{{ end }} {{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -62,4 +62,4 @@
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<!-- Ranges through content/post/*.md -->
|
<!-- Ranges through content/post/*.md -->
|
||||||
{{ range .Data.Pages.ByPublishDate }}
|
{{ range .Data.Pages.ByPublishDate }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{.Permalink}}">{{.Date.Format .Site.Params.dateForm }} | {{.Title}}</a>
|
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -62,4 +62,4 @@
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="section" id="top"><!-- Parent section -->
|
<div class="section" id="top"><!-- Parent section -->
|
||||||
|
|
||||||
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
||||||
<h1 class="bold-title is-1">{{ .Site.Params.blogHead }}</h1>
|
<h1 class="bold-title is-1">{{ .Site.Params.blogHead | default "Blog" }}</h1>
|
||||||
</div><!-- End Title -->
|
</div><!-- End Title -->
|
||||||
|
|
||||||
<!-- Everything below fades in two! -->
|
<!-- Everything below fades in two! -->
|
||||||
|
@ -13,13 +13,13 @@
|
||||||
<div class="container"><!-- Begin Nav bar -->
|
<div class="container"><!-- Begin Nav bar -->
|
||||||
{{ partial "nav-list.html" . }}
|
{{ partial "nav-list.html" . }}
|
||||||
</div><!-- End Nav bar -->
|
</div><!-- End Nav bar -->
|
||||||
|
|
||||||
<div class="container"><!-- Begin Blog container -->
|
<div class="container"><!-- Begin Blog container -->
|
||||||
|
|
||||||
{{ if .Site.Params.showLatest }}
|
{{ if .Site.Params.showLatest }}
|
||||||
<h2 class="title is-2 top-pad">Latest Post</h2>
|
<h2 class="title is-2 top-pad">Latest Post</h2>
|
||||||
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
|
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
|
||||||
<div class="summary">{{ .Date.Format .Site.Params.dateForm }}
|
<div class="summary">{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }}
|
||||||
<h3 class="title is-3 strong-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
<h3 class="title is-3 strong-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||||
<div class="markdown">
|
<div class="markdown">
|
||||||
{{ .Summary }}
|
{{ .Summary }}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="section" id="top"><!-- Parent section -->
|
<div class="section" id="top"><!-- Parent section -->
|
||||||
|
|
||||||
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
||||||
<h1 class="bold-title is-1">{{ .Site.Params.blogHead }}</h1>
|
<h1 class="bold-title is-1">{{ .Site.Params.blogHead | default "Blog" }}</h1>
|
||||||
</div><!-- End Title -->
|
</div><!-- End Title -->
|
||||||
|
|
||||||
<!-- Everything below fades in two! -->
|
<!-- Everything below fades in two! -->
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
<div class="container {{ if .Site.Params.fadeIn }} fade-in two {{ end }}"><!-- Begin blog title container -->
|
<div class="container {{ if .Site.Params.fadeIn }} fade-in two {{ end }}"><!-- Begin blog title container -->
|
||||||
<h2 class="title is-1 top-pad strong-post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title is-1 top-pad strong-post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||||||
<div class="post-data">
|
<div class="post-data">
|
||||||
{{ .Date.Format .Site.Params.dateForm }} |
|
{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} |
|
||||||
{{ if eq 1 .ReadingTime }}{{ .ReadingTime }} minute read{{ else }}{{ .ReadingTime }} minutes read{{ end }}
|
{{ if eq 1 .ReadingTime }}{{ .ReadingTime }} minute read{{ else }}{{ .ReadingTime }} minutes read{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -87,4 +87,4 @@ $('a[href^="{{ .Permalink }}#"]').click(function(e) {
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
|
|
||||||
<div id="top"> <!-- Where all the awesome begins -->
|
<div id="top"> <!-- Where all the awesome begins -->
|
||||||
|
|
||||||
<div class="hero is-{{ .Site.Params.introHeight }}">
|
<div class="hero is-{{ .Site.Params.introHeight | default "fullheight" }}">
|
||||||
<!-- Possible hero-head not used -->
|
<!-- Possible hero-head not used -->
|
||||||
<!-- Super sweet Hero body title -->
|
<!-- Super sweet Hero body title -->
|
||||||
<div class="hero-body">
|
<div class="hero-body">
|
||||||
<div class="container has-text-centered">
|
<div class="container has-text-centered">
|
||||||
<!-- Title and tagline -->
|
<!-- Title and tagline -->
|
||||||
<h1 class="bold-title {{ if .Site.Params.fadeIn }}fade-in one{{ end }}">
|
<h1 class="bold-title {{ if .Site.Params.fadeIn }}fade-in one{{ end }}">
|
||||||
Hi, I'm {{ .Site.Params.firstName }}.
|
Hi, I'm {{ .Site.Params.firstName | default "Introduction" }}.
|
||||||
</h1>
|
</h1>
|
||||||
<h3 class="subtitle is-3 {{ if.Site.Params.fadeIn }} fade-in two{{ end }}">
|
<h3 class="subtitle is-3 {{ if.Site.Params.fadeIn }} fade-in two{{ end }}">
|
||||||
{{ .Site.Params.tagLine }}
|
{{ .Site.Params.tagLine }}
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
{{ if .Site.Params.showLatest }}
|
{{ if .Site.Params.showLatest }}
|
||||||
<h2 class="title is-2 has-text-centered">Latest Post</h2>
|
<h2 class="title is-2 has-text-centered">Latest Post</h2>
|
||||||
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
|
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
|
||||||
<div class="summary">{{ .Date.Format .Site.Params.dateForm }}
|
<div class="summary">{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }}
|
||||||
<h3 class="title is-3 latest-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
<h3 class="title is-3 latest-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||||
<div class="markdown">
|
<div class="markdown">
|
||||||
{{ .Summary }}
|
{{ .Summary }}
|
||||||
|
|
|
@ -34,32 +34,32 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script
|
<script type="text/javascript" src="/js/jquery-3.3.1.min.js"></script>
|
||||||
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
||||||
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
<!-- Fonts and icon CSS -->
|
<!-- Fonts and icon CSS -->
|
||||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
<link rel="stylesheet" href="/css/font-awesome.min.css">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito+Sans">
|
<link rel="stylesheet" href="/css/nunito_sans.css">
|
||||||
|
|
||||||
{{ if .Site.Params.cacheBuster }}
|
{{ if .Site.Params.cacheBuster }}
|
||||||
|
|
||||||
{{ $t := now.Unix }}
|
{{ $t := now.Unix }}
|
||||||
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle }}-style.css?t={{$t}}">
|
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css?t={{$t}}">
|
||||||
{{range .Site.Params.extraCSSFiles}}
|
{{range .Site.Params.extraCSSFiles}}
|
||||||
<link rel="stylesheet" href="{{.}}?t={{$t}}">
|
<link rel="stylesheet" href="{{.}}?t={{$t}}">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
|
|
||||||
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle }}-style.css">
|
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css">
|
||||||
{{range .Site.Params.extraCSSFiles}}
|
{{range .Site.Params.extraCSSFiles}}
|
||||||
<link rel="stylesheet" href="{{.}}">
|
<link rel="stylesheet" href="{{.}}">
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Custom css -->
|
||||||
|
{{ range .Site.Params.customCSS -}}
|
||||||
|
<link rel="stylesheet" href="{{ . | absURL }}">
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
<!-- Icon -->
|
<!-- Icon -->
|
||||||
<link rel="shortcut icon"
|
<link rel="shortcut icon"
|
||||||
{{ if .Site.Params.faviconFile }}
|
{{ if .Site.Params.faviconFile }}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<li class="post-item">
|
<li class="post-item">
|
||||||
<span><a href="{{ .Permalink }}">{{ .Title }}</a></span> - <span>{{ .Date.Format .Site.Params.dateForm }}</span>
|
<span><a href="{{ .Permalink }}">{{ .Title }}</a></span> - <span>{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }}</span>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
<div class="section is-small">
|
<div class="section is-small">
|
||||||
<div class="columns is-multiline">
|
<div class="columns is-multiline">
|
||||||
{{ range sort .Pages }} {{ if eq .Section "projects" }}
|
{{ range sort .Pages }} {{ if eq .Section "projects" }}
|
||||||
{{ if eq .Site.Params.projectColumns "2" }}
|
{{ if eq (.Site.Params.projectColumns | default "3") "2" }}
|
||||||
<div class="column is-half"> {{ else if eq .Site.Params.projectColumns "3" }}
|
<div class="column is-half"> {{ else if eq (.Site.Params.projectColumns | default "3") "3" }}
|
||||||
<div class="column is-one-third"> {{ end }}
|
<div class="column is-one-third"> {{ end }}
|
||||||
<!-- Hey Vicky, show half column if number is even. -->
|
<!-- Hey Vicky, show half column if number is even. -->
|
||||||
<div {{ if not .Params.external_link }} id="project{{.Title | urlize}}" {{ end }} class="card">
|
<div {{ if not .Params.external_link }} id="project{{.Title | urlize}}" {{ end }} class="card">
|
||||||
|
|
4
static/css/font-awesome.min.css
vendored
Normal file
4
static/css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
24
static/css/nunito_sans.css
Normal file
24
static/css/nunito_sans.css
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Nunito Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local('Nunito Sans Regular'), local('NunitoSans-Regular'), url(../fonts/NunitoSans-Regular.ttf) format('woff2');
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Nunito Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local('Nunito Sans Regular'), local('NunitoSans-Regular'), url(../fonts/NunitoSans-Regular.ttf) format('woff2');
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Nunito Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local('Nunito Sans Regular'), local('NunitoSans-Regular'), url(../fonts/NunitoSans-Regular.ttf) format('woff2');
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||||
|
}
|
BIN
static/fonts/FontAwesome.otf
Normal file
BIN
static/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-Black.ttf
Normal file
BIN
static/fonts/NunitoSans-Black.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-BlackItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-Bold.ttf
Normal file
BIN
static/fonts/NunitoSans-Bold.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-BoldItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-ExtraBold.ttf
Normal file
BIN
static/fonts/NunitoSans-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-ExtraBoldItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-ExtraLight.ttf
Normal file
BIN
static/fonts/NunitoSans-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-ExtraLightItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-Italic.ttf
Normal file
BIN
static/fonts/NunitoSans-Italic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-Light.ttf
Normal file
BIN
static/fonts/NunitoSans-Light.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-LightItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-LightItalic.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-Regular.ttf
Normal file
BIN
static/fonts/NunitoSans-Regular.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-SemiBold.ttf
Normal file
BIN
static/fonts/NunitoSans-SemiBold.ttf
Normal file
Binary file not shown.
BIN
static/fonts/NunitoSans-SemiBoldItalic.ttf
Normal file
BIN
static/fonts/NunitoSans-SemiBoldItalic.ttf
Normal file
Binary file not shown.
93
static/fonts/OFL.txt
Normal file
93
static/fonts/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
Copyright 2016 The Nunito Project Authors (contact@sansoxygen.com),
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
http://scripts.sil.org/OFL
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
BIN
static/fonts/fontawesome-webfont.eot
Normal file
BIN
static/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
static/fonts/fontawesome-webfont.svg
Normal file
2671
static/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 434 KiB |
BIN
static/fonts/fontawesome-webfont.ttf
Normal file
BIN
static/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
static/fonts/fontawesome-webfont.woff
Normal file
BIN
static/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
static/fonts/fontawesome-webfont.woff2
Normal file
BIN
static/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
2
static/js/jquery-3.3.1.min.js
vendored
Normal file
2
static/js/jquery-3.3.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue