mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Merge branch 'luizdepra-m'
This commit is contained in:
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
custom: https://www.buymeacoffee.com/luizdepra
|
||||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,4 +1,5 @@
|
|||||||
|
.idea
|
||||||
**/themes/
|
**/themes/
|
||||||
demo/
|
exampleSite/public/
|
||||||
.hugo/*
|
exampleSite/resources/
|
||||||
!.hugo/version
|
*.lock
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
- [Bobby Lindsey](https://bobbywlindsey.com)
|
- [Bobby Lindsey](https://bobbywlindsey.com)
|
||||||
- [José Mª Escartín](https://github.com/jme52)
|
- [José Mª Escartín](https://github.com/jme52)
|
||||||
- [John Schroeder](https://blog.schroedernet.software)
|
- [John Schroeder](https://blog.schroedernet.software)
|
||||||
- [Tobias Lindberg](https://tobiaslindberg.com)
|
- [Tobias Lindberg](https://github.com/tobiasehlert)
|
||||||
- [KK](https://github.com/bebound)
|
- [KK](https://github.com/bebound)
|
||||||
- [Eli W. Hunter](https://github.com/elihunter173)
|
- [Eli W. Hunter](https://github.com/elihunter173)
|
||||||
- [Víctor López](https://github.com/viticlick)
|
- [Víctor López](https://github.com/viticlick)
|
||||||
@@ -95,3 +95,20 @@
|
|||||||
- [Alex Miranda](https://ammiranda.com)
|
- [Alex Miranda](https://ammiranda.com)
|
||||||
- [Alphonse Mariya](https://github.com/alfunx)
|
- [Alphonse Mariya](https://github.com/alfunx)
|
||||||
- [Ziwei Pan](https://github.com/PanZiwei/)
|
- [Ziwei Pan](https://github.com/PanZiwei/)
|
||||||
|
- [Viktar Patotski](https://github.com/xp-vit)
|
||||||
|
- [cuso4-5h2o](https://www.cuso4.me)
|
||||||
|
- [freeformz](https://icanhazdowntime.org)
|
||||||
|
- [Roberto Gongora](https://yourfavourite.blog)
|
||||||
|
- [kuba86](https://kuba86.com)
|
||||||
|
- [Vladislav Matus](https://github.com/matusvla)
|
||||||
|
- [Kirill Feoktistov](https://feoktistoff.org)
|
||||||
|
- [leins275](https://github.com/LanskovNV)
|
||||||
|
- [Michael Weiss](https://mweiss.ch)
|
||||||
|
- [Simon Pai](https://github.com/simonpai)
|
||||||
|
- [Brenton Mallen](https://github.com/brentonmallen1)
|
||||||
|
- [Xiaoyang Luo](https://github.com/ccviolett/)
|
||||||
|
- [Michiel Appelman](https://appelman.se)
|
||||||
|
- [Mark Wood](https://digitalnotions.net)
|
||||||
|
- [Sam A.](https://samsapti.dev)
|
||||||
|
- [John Feminella](https://jxf.me)
|
||||||
|
- [zzsqwq](https://zzsqwq.cn)
|
||||||
|
|||||||
20
Makefile
20
Makefile
@@ -1,20 +1,12 @@
|
|||||||
HUGO_BIN=hugo
|
HUGO_BIN=hugo
|
||||||
|
|
||||||
.PHONY: prepare release build demo clean
|
.PHONY: build demo release
|
||||||
|
|
||||||
build: prepare
|
build:
|
||||||
$(HUGO_BIN) --source demo
|
$(HUGO_BIN) --themesDir=../.. --source=exampleSite
|
||||||
|
|
||||||
demo: prepare
|
demo:
|
||||||
$(HUGO_BIN) server --buildDrafts --source demo
|
$(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite --bind 0.0.0.0
|
||||||
|
|
||||||
release: build
|
release: build
|
||||||
rm -rf ./resources && cp -r ./demo/resources ./resources
|
rm -rf ./resources && cp -r ./exampleSite/resources ./resources
|
||||||
|
|
||||||
prepare: clean
|
|
||||||
mkdir -p demo/themes/hugo-coder
|
|
||||||
rsync -av exampleSite/ demo
|
|
||||||
rsync -av --exclude='demo' --exclude='exampleSite' --exclude='.git' . demo/themes/hugo-coder
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf demo
|
|
||||||
|
|||||||
83
assets/js/coder.js
Normal file
83
assets/js/coder.js
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
const body = document.body;
|
||||||
|
const darkModeToggle = document.getElementById('dark-mode-toggle');
|
||||||
|
const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
|
||||||
|
|
||||||
|
// Check if user preference is set, if not check value of body class for light or dark else it means that colorscheme = auto
|
||||||
|
if (localStorage.getItem("colorscheme")) {
|
||||||
|
setTheme(localStorage.getItem("colorscheme"));
|
||||||
|
} else if (body.classList.contains('colorscheme-light') || body.classList.contains('colorscheme-dark')) {
|
||||||
|
setTheme(body.classList.contains("colorscheme-dark") ? "dark" : "light");
|
||||||
|
} else {
|
||||||
|
setTheme(darkModeMediaQuery.matches ? "dark" : "light");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (darkModeToggle) {
|
||||||
|
darkModeToggle.addEventListener('click', () => {
|
||||||
|
let theme = body.classList.contains("colorscheme-dark") ? "light" : "dark";
|
||||||
|
setTheme(theme);
|
||||||
|
rememberTheme(theme);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
darkModeMediaQuery.addListener((event) => {
|
||||||
|
setTheme(event.matches ? "dark" : "light");
|
||||||
|
});
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
|
let node = document.querySelector('.preload-transitions');
|
||||||
|
node.classList.remove('preload-transitions');
|
||||||
|
});
|
||||||
|
|
||||||
|
function setTheme(theme) {
|
||||||
|
body.classList.remove('colorscheme-auto');
|
||||||
|
let inverse = theme === 'dark' ? 'light' : 'dark';
|
||||||
|
body.classList.remove('colorscheme-' + inverse);
|
||||||
|
body.classList.add('colorscheme-' + theme);
|
||||||
|
document.documentElement.style['color-scheme'] = theme;
|
||||||
|
|
||||||
|
function waitForElm(selector) {
|
||||||
|
return new Promise(resolve => {
|
||||||
|
if (document.querySelector(selector)) {
|
||||||
|
return resolve(document.querySelector(selector));
|
||||||
|
}
|
||||||
|
|
||||||
|
const observer = new MutationObserver(mutations => {
|
||||||
|
if (document.querySelector(selector)) {
|
||||||
|
resolve(document.querySelector(selector));
|
||||||
|
observer.disconnect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.body, {
|
||||||
|
childList: true,
|
||||||
|
subtree: true
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (theme === 'dark') {
|
||||||
|
const message = {
|
||||||
|
type: 'set-theme',
|
||||||
|
theme: 'github-dark'
|
||||||
|
};
|
||||||
|
waitForElm('.utterances-frame').then((iframe) => {
|
||||||
|
iframe.contentWindow.postMessage(message, 'https://utteranc.es');
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
const message = {
|
||||||
|
type: 'set-theme',
|
||||||
|
theme: 'github-light'
|
||||||
|
};
|
||||||
|
waitForElm('.utterances-frame').then((iframe) => {
|
||||||
|
iframe.contentWindow.postMessage(message, 'https://utteranc.es');
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function rememberTheme(theme) {
|
||||||
|
localStorage.setItem('colorscheme', theme);
|
||||||
|
}
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
const body = document.body;
|
|
||||||
const darkModeToggle = document.getElementById('dark-mode-toggle');
|
|
||||||
const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
|
|
||||||
|
|
||||||
// Check if user preference is set, if not check value of body class for light or dark else it means that colorscheme = auto
|
|
||||||
if (localStorage.getItem("colorscheme")) {
|
|
||||||
setTheme(localStorage.getItem("colorscheme"));
|
|
||||||
} else if (body.classList.contains('colorscheme-light') || body.classList.contains('colorscheme-dark')) {
|
|
||||||
setTheme(body.classList.contains("colorscheme-dark") ? "dark" : "light");
|
|
||||||
} else {
|
|
||||||
setTheme(darkModeMediaQuery.matches ? "dark" : "light");
|
|
||||||
}
|
|
||||||
|
|
||||||
darkModeToggle.addEventListener('click', () => {
|
|
||||||
setTheme(body.classList.contains("colorscheme-dark") ? "light" : "dark");
|
|
||||||
});
|
|
||||||
|
|
||||||
darkModeMediaQuery.addListener((event) => {
|
|
||||||
setTheme(event.matches ? "dark" : "light");
|
|
||||||
});
|
|
||||||
|
|
||||||
function setTheme(theme) {
|
|
||||||
body.classList.remove('colorscheme-auto');
|
|
||||||
inverse = theme === 'dark' ? 'light' : 'dark';
|
|
||||||
localStorage.setItem('colorscheme', theme);
|
|
||||||
body.classList.remove('colorscheme-' + inverse);
|
|
||||||
body.classList.add('colorscheme-' + theme);
|
|
||||||
}
|
|
||||||
@@ -12,10 +12,11 @@ html {
|
|||||||
body {
|
body {
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
background-color: $bg-color;
|
background-color: $bg-color;
|
||||||
font-family: $text-font-family;
|
font-family: $font-family;
|
||||||
font-size: 1.6em;
|
font-size: 1.8em;
|
||||||
font-weight: 300;
|
font-weight: 400;
|
||||||
line-height: 1.8em;
|
line-height: 1.8em;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
line-height: 1.6em;
|
line-height: 1.6em;
|
||||||
@@ -23,10 +24,11 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: 300;
|
font-weight: 500;
|
||||||
color: $link-color;
|
color: $link-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: all .25s ease-in;
|
transition: all 0.25s ease-in;
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@@ -34,7 +36,7 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 2.0rem 0 2.0rem 0;
|
margin: 2rem 0 2rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
@@ -43,10 +45,10 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: $heading-font-family;
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 600;
|
||||||
color: $alt-fg-color;
|
color: $alt-fg-color;
|
||||||
margin: 6.4rem 0 3.2rem 0;
|
margin: 4rem 0 2.5rem 0;
|
||||||
|
|
||||||
&:hover .heading-link {
|
&:hover .heading-link {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
@@ -70,59 +72,71 @@ h6 {
|
|||||||
h1 {
|
h1 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
line-height: 3.6rem;
|
line-height: 3.6rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 3.0rem;
|
font-size: 3rem;
|
||||||
line-height: 3.4rem;
|
line-height: 3.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2.8rem;
|
font-size: 2.8rem;
|
||||||
line-height: 3.2rem;
|
line-height: 3.2rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 2.6rem;
|
font-size: 2.6rem;
|
||||||
line-height: 3.0rem;
|
line-height: 3rem;
|
||||||
}
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
font-size: 2.4rem;
|
|
||||||
line-height: 2.8rem;
|
|
||||||
@media only screen and (max-width : 768px) {
|
|
||||||
font-size: 2.2rem;
|
|
||||||
line-height: 2.6rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h4 {
|
|
||||||
font-size: 2.2rem;
|
|
||||||
line-height: 2.6rem;
|
|
||||||
@media only screen and (max-width : 768px) {
|
|
||||||
font-size: 2.0rem;
|
|
||||||
line-height: 2.4rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h5 {
|
|
||||||
font-size: 2.0rem;
|
|
||||||
line-height: 2.4rem;
|
|
||||||
@media only screen and (max-width : 768px) {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
line-height: 2.2rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h6 {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
line-height: 2.2rem;
|
|
||||||
@media only screen and (max-width : 768px) {
|
|
||||||
font-size: 1.6rem;
|
|
||||||
line-height: 2.0rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
b, strong {
|
h3 {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
line-height: 2.8rem;
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
font-size: 2.2rem;
|
||||||
|
line-height: 2.6rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 2.2rem;
|
||||||
|
line-height: 2.6rem;
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
font-size: 2rem;
|
||||||
|
line-height: 2.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 2rem;
|
||||||
|
line-height: 2.4rem;
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
line-height: 2.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
line-height: 2.2rem;
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
line-height: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight>div,
|
.highlight>div,
|
||||||
.highlight>pre {
|
.highlight>pre {
|
||||||
margin: 0 0 2rem;
|
margin: 2rem 0 2rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
}
|
}
|
||||||
@@ -135,6 +149,7 @@ pre {
|
|||||||
line-height: 2.6rem;
|
line-height: 2.6rem;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
code {
|
code {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
@@ -148,35 +163,45 @@ code {
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
background-color: $alt-bg-color;
|
background-color: $alt-bg-color;
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
|
border-radius: 0.6rem;
|
||||||
|
padding: 0.3rem 0.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 2px solid $alt-bg-color;
|
border-left: 2px solid $alt-bg-color;
|
||||||
padding-left: 2.0rem;
|
padding-left: 2rem;
|
||||||
line-height: 2.2rem;
|
line-height: 2.2rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
th, td {
|
th,
|
||||||
|
td {
|
||||||
padding: 1.6rem;
|
padding: 1.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
table td, table th {
|
|
||||||
|
table td,
|
||||||
|
table th {
|
||||||
border: 2px solid $alt-fg-color;
|
border: 2px solid $alt-fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr:first-child th {
|
table tr:first-child th {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr:last-child td {
|
table tr:last-child td {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr td:first-child,
|
table tr td:first-child,
|
||||||
table tr th:first-child {
|
table tr th:first-child {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr td:last-child,
|
table tr td:last-child,
|
||||||
table tr th:last-child {
|
table tr th:last-child {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
@@ -190,6 +215,16 @@ figure {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.preload-transitions * {
|
||||||
|
$null-transition: none !important;
|
||||||
|
|
||||||
|
-webkit-transition: $null-transition;
|
||||||
|
-moz-transition: $null-transition;
|
||||||
|
-ms-transition: $null-transition;
|
||||||
|
-o-transition: $null-transition;
|
||||||
|
transition: $null-transition;
|
||||||
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -199,11 +234,11 @@ figure {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin: 0 auto;
|
margin: 1rem auto;
|
||||||
max-width: 90.0rem;
|
max-width: 90rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-left: 2.0rem;
|
padding-left: 2rem;
|
||||||
padding-right: 2.0rem;
|
padding-right: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fab {
|
.fab {
|
||||||
@@ -229,10 +264,3 @@ figure {
|
|||||||
.fas {
|
.fas {
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.emoji {
|
|
||||||
height: 1em;
|
|
||||||
width: 1em;
|
|
||||||
margin: 0 .05em 0 .1em;
|
|
||||||
vertical-align: -0.1em;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@mixin base_dark {
|
@mixin base_dark {
|
||||||
|
|
||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
background-color: $bg-color-dark;
|
background-color: $bg-color-dark;
|
||||||
|
|
||||||
@@ -39,6 +38,13 @@
|
|||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fix color schemes which do not explicitly set fg-color
|
||||||
|
.highlight {
|
||||||
|
pre {
|
||||||
|
color: $fg-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
code {
|
code {
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
@@ -50,18 +56,45 @@
|
|||||||
border-left: 2px solid $alt-bg-color-dark;
|
border-left: 2px solid $alt-bg-color-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
table td, table th {
|
th,
|
||||||
|
td {
|
||||||
|
padding: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
table td,
|
||||||
|
table th {
|
||||||
border: 2px solid $alt-fg-color-dark;
|
border: 2px solid $alt-fg-color-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table tr:first-child th {
|
||||||
|
border-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr:last-child td {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr td:first-child,
|
||||||
|
table tr th:first-child {
|
||||||
|
border-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr td:last-child,
|
||||||
|
table tr th:last-child {
|
||||||
|
border-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-dark {
|
body.colorscheme-dark {
|
||||||
@include base_dark()
|
@include base_dark();
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-auto {
|
body.colorscheme-auto {
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include base_dark()
|
@include base_dark();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ body.rtl {
|
|||||||
table tr th:first-child {
|
table tr th:first-child {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr td:last-child,
|
table tr td:last-child,
|
||||||
table tr th:last-child {
|
table tr th:last-child {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
|
|||||||
@@ -2,44 +2,54 @@
|
|||||||
display: block;
|
display: block;
|
||||||
margin-top: 1.6rem;
|
margin-top: 1.6rem;
|
||||||
margin-bottom: 3.2rem;
|
margin-bottom: 3.2rem;
|
||||||
|
|
||||||
article {
|
article {
|
||||||
details {
|
details {
|
||||||
summary {
|
summary {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
margin-top: 6.4rem;
|
margin-top: 6.4rem;
|
||||||
margin-bottom: 3.2rem;
|
margin-bottom: 3.2rem;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 4.2rem;
|
font-size: 4.2rem;
|
||||||
line-height: 4.6rem;
|
line-height: 4.6rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 4.0rem;
|
font-size: 4rem;
|
||||||
line-height: 4.4rem;
|
line-height: 4.4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: 4.0rem;
|
margin-top: 4rem;
|
||||||
|
|
||||||
.see-also {
|
.see-also {
|
||||||
margin: 3.2rem 0;
|
margin: 3.2rem 0;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin: 3.2rem 0;
|
margin: 3.2rem 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
text-justify: auto;
|
text-justify: auto;
|
||||||
hyphens: auto;
|
hyphens: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.post {
|
.post {
|
||||||
.post-title {
|
.post-title {
|
||||||
margin-bottom: .75em;
|
margin-bottom: 0.75em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-meta {
|
.post-meta {
|
||||||
i {
|
i {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -47,18 +57,38 @@
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
.posted-on {
|
.posted-on {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 1.5rem;
|
margin-right: 1.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
|
.tag {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.3rem 0.6rem;
|
||||||
|
background-color: $alt-bg-color;
|
||||||
|
border-radius: 0.6rem;
|
||||||
|
line-height: 1.4em;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $fg-color;
|
||||||
|
}
|
||||||
|
a:active {
|
||||||
|
color: $fg-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
figcaption p {
|
figcaption p {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
@@ -71,6 +101,7 @@
|
|||||||
width: 20rem;
|
width: 20rem;
|
||||||
height: auto;
|
height: auto;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
width: 10rem;
|
width: 10rem;
|
||||||
}
|
}
|
||||||
@@ -81,35 +112,42 @@
|
|||||||
margin: 3.2rem 0 3.2rem 0;
|
margin: 3.2rem 0 3.2rem 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
margin: 1.6rem 0 1.6rem 0;
|
margin: 1.6rem 0 1.6rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
width: 20.0rem;
|
width: 20rem;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-right: 3.0rem;
|
margin-right: 3rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
flex: 2;
|
flex: 2;
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
font-family: $heading-font-family;
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color
|
color: $link-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ul:not(.pagination) {
|
ul:not(.pagination) {
|
||||||
li {
|
li {
|
||||||
@media only screen and (min-width: 768.1px) {
|
@media only screen and (min-width: 768.1px) {
|
||||||
@@ -123,43 +161,49 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
.about {
|
.about {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin-top: 2.0rem;
|
margin-top: 2rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-top: 1.0rem;
|
margin-top: 1rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-size: 2.4rem;
|
font-size: 2.4rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 2.0rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 3.0rem 0 1.0rem 0;
|
margin: 3rem 0 1rem 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin-left: 1.0rem;
|
margin-left: 1rem;
|
||||||
margin-right: 1.0rem;
|
margin-right: 1rem;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color;
|
color: $link-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
i {
|
|
||||||
font-size: 3.2rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -167,18 +211,22 @@
|
|||||||
|
|
||||||
.error {
|
.error {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin-top: 2.0rem;
|
margin-top: 2rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-size: 4.6rem;
|
font-size: 4.6rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-top: 2.0rem;
|
margin-top: 2rem;
|
||||||
margin-bottom: 3.2rem;
|
margin-bottom: 3.2rem;
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
font-size: 2.8rem;
|
font-size: 2.8rem;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,25 @@
|
|||||||
@mixin content_dark {
|
@mixin content_dark {
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
.post {
|
||||||
|
.tags {
|
||||||
|
.tag {
|
||||||
|
background-color: $alt-bg-color-dark;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $fg-color-dark;
|
||||||
|
}
|
||||||
|
a:active {
|
||||||
|
color: $fg-color-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.list {
|
.list {
|
||||||
ul {
|
ul {
|
||||||
li {
|
li {
|
||||||
.title {
|
.title {
|
||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color-dark;
|
color: $link-color-dark;
|
||||||
@@ -22,6 +35,7 @@
|
|||||||
li {
|
li {
|
||||||
a {
|
a {
|
||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color-dark;
|
color: $link-color-dark;
|
||||||
@@ -35,16 +49,15 @@
|
|||||||
.back-button{
|
.back-button{
|
||||||
color: $fg-color-dark !important;
|
color: $fg-color-dark !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-dark {
|
body.colorscheme-dark {
|
||||||
@include content_dark()
|
@include content_dark();
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-auto {
|
body.colorscheme-auto {
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include content_dark()
|
@include content_dark();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ body.rtl {
|
|||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags,
|
.tags,
|
||||||
.categories {
|
.categories {
|
||||||
i {
|
i {
|
||||||
@@ -22,8 +23,9 @@ body.rtl {
|
|||||||
li {
|
li {
|
||||||
.date {
|
.date {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-left: 3.0rem;
|
margin-left: 3rem;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,24 +4,35 @@
|
|||||||
z-index: 100;
|
z-index: 100;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: block;
|
position: relative;
|
||||||
text-align: center;
|
display: inline-block;
|
||||||
width: 3.0rem;
|
width: 3rem;
|
||||||
height: 3.0rem;
|
height: 3rem;
|
||||||
|
font-size: 2rem;
|
||||||
color: $alt-fg-color;
|
color: $alt-fg-color;
|
||||||
background-color: $alt-bg-color;
|
background-color: $alt-bg-color;
|
||||||
font-size: 2.0rem;
|
border-radius: 0.2rem;
|
||||||
border-radius: 0.5rem;
|
|
||||||
opacity: 50%;
|
opacity: 50%;
|
||||||
transition: all .25s ease-in;
|
transition: all 0.25s ease-in;
|
||||||
&:hover, &:focus {
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $link-color;
|
color: $link-color;
|
||||||
opacity: 100%;
|
opacity: 100%;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
color: $alt-fg-color;
|
color: $alt-fg-color;
|
||||||
opacity: 50%;
|
opacity: 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,11 @@
|
|||||||
a {
|
a {
|
||||||
color: $alt-fg-color-dark;
|
color: $alt-fg-color-dark;
|
||||||
background-color: $alt-bg-color-dark;
|
background-color: $alt-bg-color-dark;
|
||||||
&:hover, &:focus {
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $link-color-dark;
|
color: $link-color-dark;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
color: $alt-fg-color-dark;
|
color: $alt-fg-color-dark;
|
||||||
}
|
}
|
||||||
@@ -14,11 +17,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-dark {
|
body.colorscheme-dark {
|
||||||
@include float_dark()
|
@include float_dark();
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-auto {
|
body.colorscheme-auto {
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include float_dark()
|
@include float_dark();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
.footer {
|
.footer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: $heading-font-family;
|
font-size: 1.6rem;
|
||||||
line-height: 2.0rem;
|
line-height: 2rem;
|
||||||
margin-bottom:1.0rem;
|
margin-bottom: 1rem;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $link-color;
|
color: $link-color;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,11 +7,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-dark {
|
body.colorscheme-dark {
|
||||||
@include footer_dark()
|
@include footer_dark();
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-auto {
|
body.colorscheme-auto {
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include footer_dark()
|
@include footer_dark();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,32 +1,38 @@
|
|||||||
.navigation {
|
.navigation {
|
||||||
height: 6.0rem;
|
height: 6rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
a, span {
|
|
||||||
|
a,
|
||||||
|
span {
|
||||||
display: inline;
|
display: inline;
|
||||||
font-size: 1.6rem;
|
font-size: 1.7rem;
|
||||||
font-family: $heading-font-family;
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 600;
|
||||||
line-height: 6.0rem;
|
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color
|
color: $link-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-title {
|
.navigation-title {
|
||||||
letter-spacing: 0.1rem;
|
letter-spacing: 0.1rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-list {
|
.navigation-list {
|
||||||
float: right;
|
float: right;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
position: absolute;
|
position: relative;
|
||||||
top: 6.0rem;
|
top: 2rem;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
@@ -39,37 +45,47 @@
|
|||||||
border-bottom: solid 2px $alt-bg-color;
|
border-bottom: solid 2px $alt-bg-color;
|
||||||
transition: opacity 0.25s, max-height 0.15s linear;
|
transition: opacity 0.25s, max-height 0.15s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-item {
|
.navigation-item {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
float: none !important;
|
float: none !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
a, span {
|
|
||||||
line-height: 5.0rem;
|
a,
|
||||||
|
span {
|
||||||
|
line-height: 5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
a, span {
|
|
||||||
margin-left: 1.0rem;
|
a,
|
||||||
margin-right: 1.0rem;
|
span {
|
||||||
|
margin-left: 1rem;
|
||||||
|
margin-right: 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.separator {
|
.separator {
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-separator {
|
.menu-separator {
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
border-top: 2px solid $fg-color;
|
border-top: 2px solid $fg-color;
|
||||||
margin: 0 8.0rem;
|
margin: 0 8rem;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#dark-mode-toggle {
|
#dark-mode-toggle {
|
||||||
margin: 1.7rem 0;
|
margin: 1.7rem 0;
|
||||||
font-size: 2.4rem;
|
font-size: 2.4rem;
|
||||||
@@ -79,12 +95,15 @@
|
|||||||
z-index: 100;
|
z-index: 100;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu-toggle {
|
#menu-toggle {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
&:checked+label>i {
|
&:checked+label>i {
|
||||||
color: $alt-bg-color;
|
color: $alt-bg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:checked+label+ul {
|
&:checked+label+ul {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
@@ -92,24 +111,30 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-button {
|
.menu-button {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 1.8rem 0;
|
|
||||||
font-size: 2.4rem;
|
font-size: 2.4rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
&:hover, &:focus {
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $alt-fg-color;
|
color: $alt-fg-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color;
|
color: $link-color;
|
||||||
|
|||||||
@@ -1,28 +1,33 @@
|
|||||||
@mixin navigation_dark {
|
@mixin navigation_dark {
|
||||||
|
|
||||||
|
|
||||||
.navigation {
|
.navigation {
|
||||||
a, span {
|
|
||||||
|
a,
|
||||||
|
span {
|
||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color-dark;
|
color: $link-color-dark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-list {
|
.navigation-list {
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
background-color: $bg-color-dark;
|
background-color: $bg-color-dark;
|
||||||
border-top: solid 2px $alt-bg-color-dark;
|
border-top: solid 2px $alt-bg-color-dark;
|
||||||
border-bottom: solid 2px $alt-bg-color-dark;
|
border-bottom: solid 2px $alt-bg-color-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-separator {
|
.menu-separator {
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
border-top: 2px solid $fg-color-dark;
|
border-top: 2px solid $fg-color-dark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu-toggle {
|
#menu-toggle {
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
&:checked+label>i {
|
&:checked+label>i {
|
||||||
@@ -30,30 +35,34 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
color: $fg-color-dark;
|
color: $fg-color-dark;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus {
|
&:focus {
|
||||||
color: $link-color-dark;
|
color: $link-color-dark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-button {
|
.menu-button {
|
||||||
i {
|
i {
|
||||||
&:hover, &:focus {
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
color: $alt-fg-color-dark;
|
color: $alt-fg-color-dark;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-dark {
|
body.colorscheme-dark {
|
||||||
@include navigation_dark()
|
@include navigation_dark();
|
||||||
}
|
}
|
||||||
|
|
||||||
body.colorscheme-auto {
|
body.colorscheme-auto {
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
@include navigation_dark()
|
@include navigation_dark();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
body.rtl {
|
body.rtl {
|
||||||
.navigation-list {
|
.navigation-list {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navigation-item {
|
.navigation-item {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|||||||
111
assets/scss/_notices.scss
Normal file
111
assets/scss/_notices.scss
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
.notice {
|
||||||
|
border-radius: 0.2rem;
|
||||||
|
position: relative;
|
||||||
|
margin: 2rem 0;
|
||||||
|
padding: 0 0.75rem;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
position: relative;
|
||||||
|
font-weight: 700;
|
||||||
|
margin: 0 -0.75rem;
|
||||||
|
padding: 0.2rem 3.5rem;
|
||||||
|
border-bottom: 1px solid $bg-color;
|
||||||
|
|
||||||
|
i {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 1.8rem;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice-content {
|
||||||
|
display: block;
|
||||||
|
margin: 2rem 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.note {
|
||||||
|
background-color: $bg-color-notice-note-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-note-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-note-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.tip {
|
||||||
|
background-color: $bg-color-notice-tip-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-tip-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-tip-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.example {
|
||||||
|
background-color: $bg-color-notice-example-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-example-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-example-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.question {
|
||||||
|
background-color: $bg-color-notice-question-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-question-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-question-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.info {
|
||||||
|
background-color: $bg-color-notice-info-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-info-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-info-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.warning {
|
||||||
|
background-color: $bg-color-notice-warning-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-warning-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-warning-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.notice.error {
|
||||||
|
background-color: $bg-color-notice-error-content;
|
||||||
|
|
||||||
|
.notice-title {
|
||||||
|
background-color: $bg-color-notice-error-title;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: $fg-color-notice-error-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
17
assets/scss/_notices_dark.scss
Normal file
17
assets/scss/_notices_dark.scss
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
@mixin notices_dark {
|
||||||
|
.notice {
|
||||||
|
.notice-title {
|
||||||
|
border-bottom: 1px solid $bg-color-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-dark {
|
||||||
|
@include notices_dark();
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-auto {
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
@include notices_dark();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,22 @@
|
|||||||
.pagination {
|
.pagination {
|
||||||
margin-top: 6.0rem;
|
margin-top: 6rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-family: $heading-font-family;
|
font-family: $font-family;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
display: inline;
|
display: inline;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 3.2rem;
|
width: 3.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
77
assets/scss/_tabs.scss
Normal file
77
assets/scss/_tabs.scss
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
.tabs {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin: 2rem 0 2rem 0;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&.tabs-left {
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
label.tab-label {
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
border-radius: 0px 4px 4px 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.tabs-right {
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
label.tab-label {
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
border-radius: 4px 0px 4px 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input.tab-input {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
label.tab-label {
|
||||||
|
background-color: $alt-bg-color;
|
||||||
|
border-color: $darker-alt-bg-color;
|
||||||
|
border-radius: 4px 4px 0px 0px;
|
||||||
|
|
||||||
|
border-style: solid;
|
||||||
|
border-bottom-style: hidden;
|
||||||
|
|
||||||
|
border-width: 1px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
order: 1;
|
||||||
|
padding: 0.3rem 0.6rem;
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.tab-input:checked + label.tab-label {
|
||||||
|
background-color: $bg-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
background-color: $bg-color;
|
||||||
|
border-color: $darker-alt-bg-color;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
display: none;
|
||||||
|
order: 2;
|
||||||
|
padding: 1rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.tabs-code {
|
||||||
|
.tab-content {
|
||||||
|
padding: 0.5rem;
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
27
assets/scss/_tabs_dark.scss
Normal file
27
assets/scss/_tabs_dark.scss
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
@mixin tabs_dark {
|
||||||
|
.tabs {
|
||||||
|
label.tab-label {
|
||||||
|
background-color: $alt-bg-color-dark;
|
||||||
|
border-color: $lighter-alt-bg-color-dark;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.tab-input:checked + label.tab-label {
|
||||||
|
background-color: $bg-color-dark;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
background-color: $bg-color-dark;
|
||||||
|
border-color: $lighter-alt-bg-color-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-dark {
|
||||||
|
@include tabs_dark();
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-auto {
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
@include tabs_dark();
|
||||||
|
}
|
||||||
|
}
|
||||||
20
assets/scss/_taxonomies.scss
Normal file
20
assets/scss/_taxonomies.scss
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
.taxonomy {
|
||||||
|
li {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.taxonomy-element {
|
||||||
|
display: block;
|
||||||
|
padding: 0.3rem 0.9rem;
|
||||||
|
background-color: $alt-bg-color;
|
||||||
|
border-radius: 0.6rem;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $fg-color;
|
||||||
|
}
|
||||||
|
a:active {
|
||||||
|
color: $fg-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
22
assets/scss/_taxonomies_dark.scss
Normal file
22
assets/scss/_taxonomies_dark.scss
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
@mixin taxonomy_dark {
|
||||||
|
.taxonomy-element {
|
||||||
|
background-color: $alt-bg-color-dark;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $fg-color-dark;
|
||||||
|
}
|
||||||
|
a:active {
|
||||||
|
color: $fg-color-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-dark {
|
||||||
|
@include taxonomy_dark();
|
||||||
|
}
|
||||||
|
|
||||||
|
body.colorscheme-auto {
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
@include taxonomy_dark();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,60 @@
|
|||||||
// Fonts
|
// Fonts
|
||||||
$text-font-family: Merriweather, Georgia, serif;
|
$font-family: -apple-system,
|
||||||
$heading-font-family: Lato, Helvetica, sans-serif;
|
BlinkMacSystemFont,
|
||||||
$code-font-family: 'Source Code Pro', 'Lucida Console', monospace;
|
"Segoe UI",
|
||||||
|
Roboto,
|
||||||
|
Oxygen-Sans,
|
||||||
|
Ubuntu,
|
||||||
|
Cantarell,
|
||||||
|
"Helvetica Neue",
|
||||||
|
Helvetica,
|
||||||
|
"PingFang SC",
|
||||||
|
STXihei,"华文细黑",
|
||||||
|
"Microsoft YaHei","微软雅黑",
|
||||||
|
SimSun,"宋体",
|
||||||
|
Heiti,"黑体",
|
||||||
|
sans-serif;
|
||||||
|
$code-font-family: SFMono-Regular,
|
||||||
|
Consolas,
|
||||||
|
Liberation Mono,
|
||||||
|
Menlo,
|
||||||
|
monospace;
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$bg-color: #FAFAFA !default;
|
$bg-color: #fafafa !default;
|
||||||
$fg-color: #212121 !default;
|
$fg-color: #212121 !default;
|
||||||
$alt-bg-color: #E0E0E0 !default;
|
$alt-bg-color: #e0e0e0 !default;
|
||||||
$alt-fg-color: #000 !default;
|
$alt-fg-color: #000 !default;
|
||||||
|
$darker-alt-bg-color: #ccc !default;
|
||||||
$link-color: #1565c0 !default;
|
$link-color: #1565c0 !default;
|
||||||
|
|
||||||
// Colors dark
|
// Dark colors
|
||||||
$bg-color-dark: #212121 !default;
|
$bg-color-dark: #212121 !default;
|
||||||
$fg-color-dark: #dadada !default;
|
$fg-color-dark: #dadada !default;
|
||||||
$alt-bg-color-dark: #424242 !default;
|
$alt-bg-color-dark: #424242 !default;
|
||||||
$alt-fg-color-dark: #dadada !default;
|
$alt-fg-color-dark: #dadada !default;
|
||||||
|
$lighter-alt-bg-color-dark: #4f4f4f !default;
|
||||||
$link-color-dark: #42a5f5 !default;
|
$link-color-dark: #42a5f5 !default;
|
||||||
|
|
||||||
|
// Notice colors
|
||||||
|
$fg-color-notice-note-icon: #5e35b1 !default;
|
||||||
|
$bg-color-notice-note-title: #673ab71a !default;
|
||||||
|
$bg-color-notice-note-content: #7e57c21a !default;
|
||||||
|
$fg-color-notice-tip-icon: #00897b !default;
|
||||||
|
$bg-color-notice-tip-title: #0096881a !default;
|
||||||
|
$bg-color-notice-tip-content: #26a69a1a !default;
|
||||||
|
$fg-color-notice-example-icon: #6d4c41 !default;
|
||||||
|
$bg-color-notice-example-title: #7955481a !default;
|
||||||
|
$bg-color-notice-example-content: #8d6e631a !default;
|
||||||
|
$fg-color-notice-question-icon: #7cb342 !default;
|
||||||
|
$bg-color-notice-question-title: #8bc34a1a !default;
|
||||||
|
$bg-color-notice-question-content: #9ccc651a !default;
|
||||||
|
$fg-color-notice-info-icon: #1e88e5 !default;
|
||||||
|
$bg-color-notice-info-title: #2196f31a !default;
|
||||||
|
$bg-color-notice-info-content: #42a5f51a !default;
|
||||||
|
$fg-color-notice-warning-icon: #ffb300 !default;
|
||||||
|
$bg-color-notice-warning-title: #ffc1071a !default;
|
||||||
|
$bg-color-notice-warning-content: #ffca281a !default;
|
||||||
|
$fg-color-notice-error-icon: #e53935 !default;
|
||||||
|
$bg-color-notice-error-title: #f443361a !default;
|
||||||
|
$bg-color-notice-error-content: #ef53501a !default;
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
@import "variables";
|
@import "variables";
|
||||||
@import "base_dark";
|
@import "base_dark";
|
||||||
@import "content_dark";
|
@import "content_dark";
|
||||||
|
@import "notices_dark";
|
||||||
@import "navigation_dark";
|
@import "navigation_dark";
|
||||||
|
@import "tabs_dark";
|
||||||
|
@import "taxonomies_dark";
|
||||||
@import "footer_dark";
|
@import "footer_dark";
|
||||||
@import "float_dark";
|
@import "float_dark";
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
@import "css/normalize", "css/fork-awesome";
|
@import "css/normalize";
|
||||||
|
@import "fork-awesome/fork-awesome";
|
||||||
@import "variables";
|
@import "variables";
|
||||||
@import "base";
|
@import "base";
|
||||||
@import "content";
|
@import "content";
|
||||||
|
@import "notices";
|
||||||
@import "navigation";
|
@import "navigation";
|
||||||
@import "pagination";
|
@import "pagination";
|
||||||
|
@import "tabs";
|
||||||
|
@import "taxonomies";
|
||||||
@import "footer";
|
@import "footer";
|
||||||
@import "float";
|
@import "float";
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
1
assets/scss/css/normalize.css
vendored
1
assets/scss/css/normalize.css
vendored
@@ -75,6 +75,7 @@
|
|||||||
|
|
||||||
a {
|
a {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
34
assets/scss/fork-awesome/_animated.scss
Normal file
34
assets/scss/fork-awesome/_animated.scss
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
// Spinning Icons
|
||||||
|
// --------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-spin {
|
||||||
|
-webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
||||||
|
animation: #{$fa-css-prefix}-spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-pulse {
|
||||||
|
-webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
||||||
|
animation: #{$fa-css-prefix}-spin 1s infinite steps(8);
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes #{$fa-css-prefix}-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes #{$fa-css-prefix}-spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
25
assets/scss/fork-awesome/_bordered-pulled.scss
Normal file
25
assets/scss/fork-awesome/_bordered-pulled.scss
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Bordered & Pulled
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-border {
|
||||||
|
padding: .2em .25em .15em;
|
||||||
|
border: solid .08em $fa-border-color;
|
||||||
|
border-radius: .1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-pull-left { float: left; }
|
||||||
|
.#{$fa-css-prefix}-pull-right { float: right; }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix} {
|
||||||
|
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||||
|
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Deprecated as of 4.4.0 */
|
||||||
|
.pull-right { float: right; }
|
||||||
|
.pull-left { float: left; }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix} {
|
||||||
|
&.pull-left { margin-right: .3em; }
|
||||||
|
&.pull-right { margin-left: .3em; }
|
||||||
|
}
|
||||||
12
assets/scss/fork-awesome/_core.scss
Normal file
12
assets/scss/fork-awesome/_core.scss
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// Base Class Definition
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix} {
|
||||||
|
display: inline-block;
|
||||||
|
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} #{$fa-font-family}; // shortening font declaration
|
||||||
|
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||||
|
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
|
||||||
|
}
|
||||||
6
assets/scss/fork-awesome/_fixed-width.scss
Normal file
6
assets/scss/fork-awesome/_fixed-width.scss
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
// Fixed Width Icons
|
||||||
|
// -------------------------
|
||||||
|
.#{$fa-css-prefix}-fw {
|
||||||
|
width: (18em / 14);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
11
assets/scss/fork-awesome/_functions.scss
Normal file
11
assets/scss/fork-awesome/_functions.scss
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
// Functions
|
||||||
|
// --------------------------
|
||||||
|
|
||||||
|
// Helper function which adds quotes to preserve unicode values in CSS output.
|
||||||
|
//
|
||||||
|
// See: https://github.com/sass/sass/issues/1395
|
||||||
|
// See: https://stackoverflow.com/questions/30421570/sass-unicode-escape-is-not-preserved-in-css-file
|
||||||
|
|
||||||
|
@function fa-content($fa-var) {
|
||||||
|
@return unquote("\"#{$fa-var}\"");
|
||||||
|
}
|
||||||
934
assets/scss/fork-awesome/_icons.scss
Normal file
934
assets/scss/fork-awesome/_icons.scss
Normal file
@@ -0,0 +1,934 @@
|
|||||||
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||||
|
readers do not read off random characters that represent icons */
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass); }
|
||||||
|
.#{$fa-css-prefix}-music:before { content: fa-content($fa-var-music); }
|
||||||
|
.#{$fa-css-prefix}-search:before { content: fa-content($fa-var-search); }
|
||||||
|
.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope-o); }
|
||||||
|
.#{$fa-css-prefix}-heart:before { content: fa-content($fa-var-heart); }
|
||||||
|
.#{$fa-css-prefix}-star:before { content: fa-content($fa-var-star); }
|
||||||
|
.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star-o); }
|
||||||
|
.#{$fa-css-prefix}-user:before { content: fa-content($fa-var-user); }
|
||||||
|
.#{$fa-css-prefix}-film:before { content: fa-content($fa-var-film); }
|
||||||
|
.#{$fa-css-prefix}-th-large:before { content: fa-content($fa-var-th-large); }
|
||||||
|
.#{$fa-css-prefix}-th:before { content: fa-content($fa-var-th); }
|
||||||
|
.#{$fa-css-prefix}-th-list:before { content: fa-content($fa-var-th-list); }
|
||||||
|
.#{$fa-css-prefix}-check:before { content: fa-content($fa-var-check); }
|
||||||
|
.#{$fa-css-prefix}-remove:before,
|
||||||
|
.#{$fa-css-prefix}-close:before,
|
||||||
|
.#{$fa-css-prefix}-times:before { content: fa-content($fa-var-times); }
|
||||||
|
.#{$fa-css-prefix}-search-plus:before { content: fa-content($fa-var-search-plus); }
|
||||||
|
.#{$fa-css-prefix}-search-minus:before { content: fa-content($fa-var-search-minus); }
|
||||||
|
.#{$fa-css-prefix}-power-off:before { content: fa-content($fa-var-power-off); }
|
||||||
|
.#{$fa-css-prefix}-signal:before { content: fa-content($fa-var-signal); }
|
||||||
|
.#{$fa-css-prefix}-gear:before,
|
||||||
|
.#{$fa-css-prefix}-cog:before { content: fa-content($fa-var-cog); }
|
||||||
|
.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-o); }
|
||||||
|
.#{$fa-css-prefix}-home:before { content: fa-content($fa-var-home); }
|
||||||
|
.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file-o); }
|
||||||
|
.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock-o); }
|
||||||
|
.#{$fa-css-prefix}-road:before { content: fa-content($fa-var-road); }
|
||||||
|
.#{$fa-css-prefix}-download:before { content: fa-content($fa-var-download); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-circle-o-down); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-circle-o-up); }
|
||||||
|
.#{$fa-css-prefix}-inbox:before { content: fa-content($fa-var-inbox); }
|
||||||
|
.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-rotate-right:before,
|
||||||
|
.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-repeat); }
|
||||||
|
.#{$fa-css-prefix}-sync:before,
|
||||||
|
.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-refresh); }
|
||||||
|
.#{$fa-css-prefix}-list-alt:before { content: fa-content($fa-var-list-alt); }
|
||||||
|
.#{$fa-css-prefix}-lock:before { content: fa-content($fa-var-lock); }
|
||||||
|
.#{$fa-css-prefix}-flag:before { content: fa-content($fa-var-flag); }
|
||||||
|
.#{$fa-css-prefix}-headphones:before { content: fa-content($fa-var-headphones); }
|
||||||
|
.#{$fa-css-prefix}-volume-off:before { content: fa-content($fa-var-volume-off); }
|
||||||
|
.#{$fa-css-prefix}-volume-down:before { content: fa-content($fa-var-volume-down); }
|
||||||
|
.#{$fa-css-prefix}-volume-up:before { content: fa-content($fa-var-volume-up); }
|
||||||
|
.#{$fa-css-prefix}-qrcode:before { content: fa-content($fa-var-qrcode); }
|
||||||
|
.#{$fa-css-prefix}-barcode:before { content: fa-content($fa-var-barcode); }
|
||||||
|
.#{$fa-css-prefix}-tag:before { content: fa-content($fa-var-tag); }
|
||||||
|
.#{$fa-css-prefix}-tags:before { content: fa-content($fa-var-tags); }
|
||||||
|
.#{$fa-css-prefix}-book:before { content: fa-content($fa-var-book); }
|
||||||
|
.#{$fa-css-prefix}-bookmark:before { content: fa-content($fa-var-bookmark); }
|
||||||
|
.#{$fa-css-prefix}-print:before { content: fa-content($fa-var-print); }
|
||||||
|
.#{$fa-css-prefix}-camera:before { content: fa-content($fa-var-camera); }
|
||||||
|
.#{$fa-css-prefix}-font:before { content: fa-content($fa-var-font); }
|
||||||
|
.#{$fa-css-prefix}-bold:before { content: fa-content($fa-var-bold); }
|
||||||
|
.#{$fa-css-prefix}-italic:before { content: fa-content($fa-var-italic); }
|
||||||
|
.#{$fa-css-prefix}-text-height:before { content: fa-content($fa-var-text-height); }
|
||||||
|
.#{$fa-css-prefix}-text-width:before { content: fa-content($fa-var-text-width); }
|
||||||
|
.#{$fa-css-prefix}-align-left:before { content: fa-content($fa-var-align-left); }
|
||||||
|
.#{$fa-css-prefix}-align-center:before { content: fa-content($fa-var-align-center); }
|
||||||
|
.#{$fa-css-prefix}-align-right:before { content: fa-content($fa-var-align-right); }
|
||||||
|
.#{$fa-css-prefix}-align-justify:before { content: fa-content($fa-var-align-justify); }
|
||||||
|
.#{$fa-css-prefix}-list:before { content: fa-content($fa-var-list); }
|
||||||
|
.#{$fa-css-prefix}-dedent:before,
|
||||||
|
.#{$fa-css-prefix}-outdent:before { content: fa-content($fa-var-outdent); }
|
||||||
|
.#{$fa-css-prefix}-indent:before { content: fa-content($fa-var-indent); }
|
||||||
|
.#{$fa-css-prefix}-video:before,
|
||||||
|
.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video-camera); }
|
||||||
|
.#{$fa-css-prefix}-photo:before,
|
||||||
|
.#{$fa-css-prefix}-image:before,
|
||||||
|
.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-picture-o); }
|
||||||
|
.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil); }
|
||||||
|
.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker); }
|
||||||
|
.#{$fa-css-prefix}-adjust:before { content: fa-content($fa-var-adjust); }
|
||||||
|
.#{$fa-css-prefix}-tint:before { content: fa-content($fa-var-tint); }
|
||||||
|
.#{$fa-css-prefix}-edit:before,
|
||||||
|
.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-pencil-square-o); }
|
||||||
|
.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square-o); }
|
||||||
|
.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square-o); }
|
||||||
|
.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows); }
|
||||||
|
.#{$fa-css-prefix}-step-backward:before { content: fa-content($fa-var-step-backward); }
|
||||||
|
.#{$fa-css-prefix}-fast-backward:before { content: fa-content($fa-var-fast-backward); }
|
||||||
|
.#{$fa-css-prefix}-backward:before { content: fa-content($fa-var-backward); }
|
||||||
|
.#{$fa-css-prefix}-play:before { content: fa-content($fa-var-play); }
|
||||||
|
.#{$fa-css-prefix}-pause:before { content: fa-content($fa-var-pause); }
|
||||||
|
.#{$fa-css-prefix}-stop:before { content: fa-content($fa-var-stop); }
|
||||||
|
.#{$fa-css-prefix}-forward:before { content: fa-content($fa-var-forward); }
|
||||||
|
.#{$fa-css-prefix}-fast-forward:before { content: fa-content($fa-var-fast-forward); }
|
||||||
|
.#{$fa-css-prefix}-step-forward:before { content: fa-content($fa-var-step-forward); }
|
||||||
|
.#{$fa-css-prefix}-eject:before { content: fa-content($fa-var-eject); }
|
||||||
|
.#{$fa-css-prefix}-chevron-left:before { content: fa-content($fa-var-chevron-left); }
|
||||||
|
.#{$fa-css-prefix}-chevron-right:before { content: fa-content($fa-var-chevron-right); }
|
||||||
|
.#{$fa-css-prefix}-plus-circle:before { content: fa-content($fa-var-plus-circle); }
|
||||||
|
.#{$fa-css-prefix}-minus-circle:before { content: fa-content($fa-var-minus-circle); }
|
||||||
|
.#{$fa-css-prefix}-times-circle:before { content: fa-content($fa-var-times-circle); }
|
||||||
|
.#{$fa-css-prefix}-check-circle:before { content: fa-content($fa-var-check-circle); }
|
||||||
|
.#{$fa-css-prefix}-question-circle:before { content: fa-content($fa-var-question-circle); }
|
||||||
|
.#{$fa-css-prefix}-info-circle:before { content: fa-content($fa-var-info-circle); }
|
||||||
|
.#{$fa-css-prefix}-crosshairs:before { content: fa-content($fa-var-crosshairs); }
|
||||||
|
.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-ban:before { content: fa-content($fa-var-ban); }
|
||||||
|
.#{$fa-css-prefix}-arrow-left:before { content: fa-content($fa-var-arrow-left); }
|
||||||
|
.#{$fa-css-prefix}-arrow-right:before { content: fa-content($fa-var-arrow-right); }
|
||||||
|
.#{$fa-css-prefix}-arrow-up:before { content: fa-content($fa-var-arrow-up); }
|
||||||
|
.#{$fa-css-prefix}-arrow-down:before { content: fa-content($fa-var-arrow-down); }
|
||||||
|
.#{$fa-css-prefix}-mail-forward:before,
|
||||||
|
.#{$fa-css-prefix}-share:before { content: fa-content($fa-var-share); }
|
||||||
|
.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand); }
|
||||||
|
.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress); }
|
||||||
|
.#{$fa-css-prefix}-plus:before { content: fa-content($fa-var-plus); }
|
||||||
|
.#{$fa-css-prefix}-minus:before { content: fa-content($fa-var-minus); }
|
||||||
|
.#{$fa-css-prefix}-asterisk:before { content: fa-content($fa-var-asterisk); }
|
||||||
|
.#{$fa-css-prefix}-exclamation-circle:before { content: fa-content($fa-var-exclamation-circle); }
|
||||||
|
.#{$fa-css-prefix}-gift:before { content: fa-content($fa-var-gift); }
|
||||||
|
.#{$fa-css-prefix}-leaf:before { content: fa-content($fa-var-leaf); }
|
||||||
|
.#{$fa-css-prefix}-fire:before { content: fa-content($fa-var-fire); }
|
||||||
|
.#{$fa-css-prefix}-eye:before { content: fa-content($fa-var-eye); }
|
||||||
|
.#{$fa-css-prefix}-eye-slash:before { content: fa-content($fa-var-eye-slash); }
|
||||||
|
.#{$fa-css-prefix}-warning:before,
|
||||||
|
.#{$fa-css-prefix}-exclamation-triangle:before { content: fa-content($fa-var-exclamation-triangle); }
|
||||||
|
.#{$fa-css-prefix}-plane:before { content: fa-content($fa-var-plane); }
|
||||||
|
.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar); }
|
||||||
|
.#{$fa-css-prefix}-random:before { content: fa-content($fa-var-random); }
|
||||||
|
.#{$fa-css-prefix}-comment:before { content: fa-content($fa-var-comment); }
|
||||||
|
.#{$fa-css-prefix}-magnet:before { content: fa-content($fa-var-magnet); }
|
||||||
|
.#{$fa-css-prefix}-chevron-up:before { content: fa-content($fa-var-chevron-up); }
|
||||||
|
.#{$fa-css-prefix}-chevron-down:before { content: fa-content($fa-var-chevron-down); }
|
||||||
|
.#{$fa-css-prefix}-retweet:before { content: fa-content($fa-var-retweet); }
|
||||||
|
.#{$fa-css-prefix}-shopping-cart:before { content: fa-content($fa-var-shopping-cart); }
|
||||||
|
.#{$fa-css-prefix}-folder:before { content: fa-content($fa-var-folder); }
|
||||||
|
.#{$fa-css-prefix}-folder-open:before { content: fa-content($fa-var-folder-open); }
|
||||||
|
.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-v); }
|
||||||
|
.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-h); }
|
||||||
|
.#{$fa-css-prefix}-bar-chart-o:before,
|
||||||
|
.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-bar-chart); }
|
||||||
|
.#{$fa-css-prefix}-twitter-square:before { content: fa-content($fa-var-twitter-square); }
|
||||||
|
.#{$fa-css-prefix}-facebook-square:before { content: fa-content($fa-var-facebook-square); }
|
||||||
|
.#{$fa-css-prefix}-camera-retro:before { content: fa-content($fa-var-camera-retro); }
|
||||||
|
.#{$fa-css-prefix}-key:before { content: fa-content($fa-var-key); }
|
||||||
|
.#{$fa-css-prefix}-gears:before,
|
||||||
|
.#{$fa-css-prefix}-cogs:before { content: fa-content($fa-var-cogs); }
|
||||||
|
.#{$fa-css-prefix}-comments:before { content: fa-content($fa-var-comments); }
|
||||||
|
.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-o-up); }
|
||||||
|
.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-o-down); }
|
||||||
|
.#{$fa-css-prefix}-star-half:before { content: fa-content($fa-var-star-half); }
|
||||||
|
.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart-o); }
|
||||||
|
.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out); }
|
||||||
|
.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin-square); }
|
||||||
|
.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumb-tack); }
|
||||||
|
.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link); }
|
||||||
|
.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in); }
|
||||||
|
.#{$fa-css-prefix}-trophy:before { content: fa-content($fa-var-trophy); }
|
||||||
|
.#{$fa-css-prefix}-github-square:before { content: fa-content($fa-var-github-square); }
|
||||||
|
.#{$fa-css-prefix}-upload:before { content: fa-content($fa-var-upload); }
|
||||||
|
.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon-o); }
|
||||||
|
.#{$fa-css-prefix}-phone:before { content: fa-content($fa-var-phone); }
|
||||||
|
.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square-o); }
|
||||||
|
.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark-o); }
|
||||||
|
.#{$fa-css-prefix}-phone-square:before { content: fa-content($fa-var-phone-square); }
|
||||||
|
.#{$fa-css-prefix}-twitter:before { content: fa-content($fa-var-twitter); }
|
||||||
|
.#{$fa-css-prefix}-facebook-f:before,
|
||||||
|
.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook); }
|
||||||
|
.#{$fa-css-prefix}-github:before { content: fa-content($fa-var-github); }
|
||||||
|
.#{$fa-css-prefix}-unlock:before { content: fa-content($fa-var-unlock); }
|
||||||
|
.#{$fa-css-prefix}-credit-card:before { content: fa-content($fa-var-credit-card); }
|
||||||
|
.#{$fa-css-prefix}-feed:before,
|
||||||
|
.#{$fa-css-prefix}-rss:before { content: fa-content($fa-var-rss); }
|
||||||
|
.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd-o); }
|
||||||
|
.#{$fa-css-prefix}-bullhorn:before { content: fa-content($fa-var-bullhorn); }
|
||||||
|
.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell-o); }
|
||||||
|
.#{$fa-css-prefix}-certificate:before { content: fa-content($fa-var-certificate); }
|
||||||
|
.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-o-right); }
|
||||||
|
.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-o-left); }
|
||||||
|
.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-o-up); }
|
||||||
|
.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-o-down); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-left:before { content: fa-content($fa-var-arrow-circle-left); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-right:before { content: fa-content($fa-var-arrow-circle-right); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-up:before { content: fa-content($fa-var-arrow-circle-up); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-down:before { content: fa-content($fa-var-arrow-circle-down); }
|
||||||
|
.#{$fa-css-prefix}-globe:before { content: fa-content($fa-var-globe); }
|
||||||
|
.#{$fa-css-prefix}-globe-e:before { content: fa-content($fa-var-globe-e); }
|
||||||
|
.#{$fa-css-prefix}-globe-w:before { content: fa-content($fa-var-globe-w); }
|
||||||
|
.#{$fa-css-prefix}-wrench:before { content: fa-content($fa-var-wrench); }
|
||||||
|
.#{$fa-css-prefix}-tasks:before { content: fa-content($fa-var-tasks); }
|
||||||
|
.#{$fa-css-prefix}-filter:before { content: fa-content($fa-var-filter); }
|
||||||
|
.#{$fa-css-prefix}-briefcase:before { content: fa-content($fa-var-briefcase); }
|
||||||
|
.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-arrows-alt); }
|
||||||
|
.#{$fa-css-prefix}-community:before,
|
||||||
|
.#{$fa-css-prefix}-group:before,
|
||||||
|
.#{$fa-css-prefix}-users:before { content: fa-content($fa-var-users); }
|
||||||
|
.#{$fa-css-prefix}-chain:before,
|
||||||
|
.#{$fa-css-prefix}-link:before { content: fa-content($fa-var-link); }
|
||||||
|
.#{$fa-css-prefix}-cloud:before { content: fa-content($fa-var-cloud); }
|
||||||
|
.#{$fa-css-prefix}-flask:before { content: fa-content($fa-var-flask); }
|
||||||
|
.#{$fa-css-prefix}-cut:before,
|
||||||
|
.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-scissors); }
|
||||||
|
.#{$fa-css-prefix}-copy:before,
|
||||||
|
.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-files-o); }
|
||||||
|
.#{$fa-css-prefix}-paperclip:before { content: fa-content($fa-var-paperclip); }
|
||||||
|
.#{$fa-css-prefix}-save:before,
|
||||||
|
.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-floppy-o); }
|
||||||
|
.#{$fa-css-prefix}-square:before { content: fa-content($fa-var-square); }
|
||||||
|
.#{$fa-css-prefix}-navicon:before,
|
||||||
|
.#{$fa-css-prefix}-reorder:before,
|
||||||
|
.#{$fa-css-prefix}-bars:before { content: fa-content($fa-var-bars); }
|
||||||
|
.#{$fa-css-prefix}-list-ul:before { content: fa-content($fa-var-list-ul); }
|
||||||
|
.#{$fa-css-prefix}-list-ol:before { content: fa-content($fa-var-list-ol); }
|
||||||
|
.#{$fa-css-prefix}-strikethrough:before { content: fa-content($fa-var-strikethrough); }
|
||||||
|
.#{$fa-css-prefix}-underline:before { content: fa-content($fa-var-underline); }
|
||||||
|
.#{$fa-css-prefix}-table:before { content: fa-content($fa-var-table); }
|
||||||
|
.#{$fa-css-prefix}-magic:before { content: fa-content($fa-var-magic); }
|
||||||
|
.#{$fa-css-prefix}-truck:before { content: fa-content($fa-var-truck); }
|
||||||
|
.#{$fa-css-prefix}-pinterest:before { content: fa-content($fa-var-pinterest); }
|
||||||
|
.#{$fa-css-prefix}-pinterest-square:before { content: fa-content($fa-var-pinterest-square); }
|
||||||
|
.#{$fa-css-prefix}-google-plus-square:before { content: fa-content($fa-var-google-plus-square); }
|
||||||
|
.#{$fa-css-prefix}-google-plus-g:before,
|
||||||
|
.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus); }
|
||||||
|
.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money); }
|
||||||
|
.#{$fa-css-prefix}-caret-down:before { content: fa-content($fa-var-caret-down); }
|
||||||
|
.#{$fa-css-prefix}-caret-up:before { content: fa-content($fa-var-caret-up); }
|
||||||
|
.#{$fa-css-prefix}-caret-left:before { content: fa-content($fa-var-caret-left); }
|
||||||
|
.#{$fa-css-prefix}-caret-right:before { content: fa-content($fa-var-caret-right); }
|
||||||
|
.#{$fa-css-prefix}-columns:before { content: fa-content($fa-var-columns); }
|
||||||
|
.#{$fa-css-prefix}-unsorted:before,
|
||||||
|
.#{$fa-css-prefix}-sort:before { content: fa-content($fa-var-sort); }
|
||||||
|
.#{$fa-css-prefix}-sort-down:before,
|
||||||
|
.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-desc); }
|
||||||
|
.#{$fa-css-prefix}-sort-up:before,
|
||||||
|
.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-asc); }
|
||||||
|
.#{$fa-css-prefix}-envelope:before { content: fa-content($fa-var-envelope); }
|
||||||
|
.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin); }
|
||||||
|
.#{$fa-css-prefix}-rotate-left:before,
|
||||||
|
.#{$fa-css-prefix}-undo:before { content: fa-content($fa-var-undo); }
|
||||||
|
.#{$fa-css-prefix}-legal:before,
|
||||||
|
.#{$fa-css-prefix}-gavel:before { content: fa-content($fa-var-gavel); }
|
||||||
|
.#{$fa-css-prefix}-dashboard:before,
|
||||||
|
.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer); }
|
||||||
|
.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment-o); }
|
||||||
|
.#{$fa-css-prefix}-comments-o:before { content: fa-content($fa-var-comments-o); }
|
||||||
|
.#{$fa-css-prefix}-flash:before,
|
||||||
|
.#{$fa-css-prefix}-bolt:before { content: fa-content($fa-var-bolt); }
|
||||||
|
.#{$fa-css-prefix}-sitemap:before { content: fa-content($fa-var-sitemap); }
|
||||||
|
.#{$fa-css-prefix}-umbrella:before { content: fa-content($fa-var-umbrella); }
|
||||||
|
.#{$fa-css-prefix}-paste:before,
|
||||||
|
.#{$fa-css-prefix}-clipboard:before { content: fa-content($fa-var-clipboard); }
|
||||||
|
.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb-o); }
|
||||||
|
.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange); }
|
||||||
|
.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download); }
|
||||||
|
.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload); }
|
||||||
|
.#{$fa-css-prefix}-user-md:before { content: fa-content($fa-var-user-md); }
|
||||||
|
.#{$fa-css-prefix}-stethoscope:before { content: fa-content($fa-var-stethoscope); }
|
||||||
|
.#{$fa-css-prefix}-suitcase:before { content: fa-content($fa-var-suitcase); }
|
||||||
|
.#{$fa-css-prefix}-bell:before { content: fa-content($fa-var-bell); }
|
||||||
|
.#{$fa-css-prefix}-coffee:before { content: fa-content($fa-var-coffee); }
|
||||||
|
.#{$fa-css-prefix}-utensils:before,
|
||||||
|
.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-cutlery); }
|
||||||
|
.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-text-o); }
|
||||||
|
.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building-o); }
|
||||||
|
.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital-o); }
|
||||||
|
.#{$fa-css-prefix}-ambulance:before { content: fa-content($fa-var-ambulance); }
|
||||||
|
.#{$fa-css-prefix}-medkit:before { content: fa-content($fa-var-medkit); }
|
||||||
|
.#{$fa-css-prefix}-fighter-jet:before { content: fa-content($fa-var-fighter-jet); }
|
||||||
|
.#{$fa-css-prefix}-beer:before { content: fa-content($fa-var-beer); }
|
||||||
|
.#{$fa-css-prefix}-h-square:before { content: fa-content($fa-var-h-square); }
|
||||||
|
.#{$fa-css-prefix}-plus-square:before { content: fa-content($fa-var-plus-square); }
|
||||||
|
.#{$fa-css-prefix}-angle-double-left:before { content: fa-content($fa-var-angle-double-left); }
|
||||||
|
.#{$fa-css-prefix}-angle-double-right:before { content: fa-content($fa-var-angle-double-right); }
|
||||||
|
.#{$fa-css-prefix}-angle-double-up:before { content: fa-content($fa-var-angle-double-up); }
|
||||||
|
.#{$fa-css-prefix}-angle-double-down:before { content: fa-content($fa-var-angle-double-down); }
|
||||||
|
.#{$fa-css-prefix}-angle-left:before { content: fa-content($fa-var-angle-left); }
|
||||||
|
.#{$fa-css-prefix}-angle-right:before { content: fa-content($fa-var-angle-right); }
|
||||||
|
.#{$fa-css-prefix}-angle-up:before { content: fa-content($fa-var-angle-up); }
|
||||||
|
.#{$fa-css-prefix}-angle-down:before { content: fa-content($fa-var-angle-down); }
|
||||||
|
.#{$fa-css-prefix}-desktop:before { content: fa-content($fa-var-desktop); }
|
||||||
|
.#{$fa-css-prefix}-laptop:before { content: fa-content($fa-var-laptop); }
|
||||||
|
.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet); }
|
||||||
|
.#{$fa-css-prefix}-mobile-phone:before,
|
||||||
|
.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile); }
|
||||||
|
.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-quote-left:before { content: fa-content($fa-var-quote-left); }
|
||||||
|
.#{$fa-css-prefix}-quote-right:before { content: fa-content($fa-var-quote-right); }
|
||||||
|
.#{$fa-css-prefix}-spinner:before { content: fa-content($fa-var-spinner); }
|
||||||
|
.#{$fa-css-prefix}-circle:before { content: fa-content($fa-var-circle); }
|
||||||
|
.#{$fa-css-prefix}-mail-reply:before,
|
||||||
|
.#{$fa-css-prefix}-reply:before { content: fa-content($fa-var-reply); }
|
||||||
|
.#{$fa-css-prefix}-github-alt:before { content: fa-content($fa-var-github-alt); }
|
||||||
|
.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder-o); }
|
||||||
|
.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open-o); }
|
||||||
|
.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile-o); }
|
||||||
|
.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown-o); }
|
||||||
|
.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh-o); }
|
||||||
|
.#{$fa-css-prefix}-gamepad:before { content: fa-content($fa-var-gamepad); }
|
||||||
|
.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard-o); }
|
||||||
|
.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag-o); }
|
||||||
|
.#{$fa-css-prefix}-flag-checkered:before { content: fa-content($fa-var-flag-checkered); }
|
||||||
|
.#{$fa-css-prefix}-terminal:before { content: fa-content($fa-var-terminal); }
|
||||||
|
.#{$fa-css-prefix}-code:before { content: fa-content($fa-var-code); }
|
||||||
|
.#{$fa-css-prefix}-mail-reply-all:before,
|
||||||
|
.#{$fa-css-prefix}-reply-all:before { content: fa-content($fa-var-reply-all); }
|
||||||
|
.#{$fa-css-prefix}-star-half-empty:before,
|
||||||
|
.#{$fa-css-prefix}-star-half-full:before,
|
||||||
|
.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half-o); }
|
||||||
|
.#{$fa-css-prefix}-location-arrow:before { content: fa-content($fa-var-location-arrow); }
|
||||||
|
.#{$fa-css-prefix}-crop:before { content: fa-content($fa-var-crop); }
|
||||||
|
.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-fork); }
|
||||||
|
.#{$fa-css-prefix}-unlink:before,
|
||||||
|
.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-chain-broken); }
|
||||||
|
.#{$fa-css-prefix}-question:before { content: fa-content($fa-var-question); }
|
||||||
|
.#{$fa-css-prefix}-info:before { content: fa-content($fa-var-info); }
|
||||||
|
.#{$fa-css-prefix}-exclamation:before { content: fa-content($fa-var-exclamation); }
|
||||||
|
.#{$fa-css-prefix}-superscript:before { content: fa-content($fa-var-superscript); }
|
||||||
|
.#{$fa-css-prefix}-subscript:before { content: fa-content($fa-var-subscript); }
|
||||||
|
.#{$fa-css-prefix}-eraser:before { content: fa-content($fa-var-eraser); }
|
||||||
|
.#{$fa-css-prefix}-puzzle-piece:before { content: fa-content($fa-var-puzzle-piece); }
|
||||||
|
.#{$fa-css-prefix}-microphone:before { content: fa-content($fa-var-microphone); }
|
||||||
|
.#{$fa-css-prefix}-microphone-slash:before { content: fa-content($fa-var-microphone-slash); }
|
||||||
|
.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield); }
|
||||||
|
.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar-o); }
|
||||||
|
.#{$fa-css-prefix}-fire-extinguisher:before { content: fa-content($fa-var-fire-extinguisher); }
|
||||||
|
.#{$fa-css-prefix}-rocket:before { content: fa-content($fa-var-rocket); }
|
||||||
|
.#{$fa-css-prefix}-maxcdn:before { content: fa-content($fa-var-maxcdn); }
|
||||||
|
.#{$fa-css-prefix}-chevron-circle-left:before { content: fa-content($fa-var-chevron-circle-left); }
|
||||||
|
.#{$fa-css-prefix}-chevron-circle-right:before { content: fa-content($fa-var-chevron-circle-right); }
|
||||||
|
.#{$fa-css-prefix}-chevron-circle-up:before { content: fa-content($fa-var-chevron-circle-up); }
|
||||||
|
.#{$fa-css-prefix}-chevron-circle-down:before { content: fa-content($fa-var-chevron-circle-down); }
|
||||||
|
.#{$fa-css-prefix}-html5:before { content: fa-content($fa-var-html5); }
|
||||||
|
.#{$fa-css-prefix}-css3:before { content: fa-content($fa-var-css3); }
|
||||||
|
.#{$fa-css-prefix}-anchor:before { content: fa-content($fa-var-anchor); }
|
||||||
|
.#{$fa-css-prefix}-unlock-alt:before { content: fa-content($fa-var-unlock-alt); }
|
||||||
|
.#{$fa-css-prefix}-bullseye:before { content: fa-content($fa-var-bullseye); }
|
||||||
|
.#{$fa-css-prefix}-ellipsis-h:before { content: fa-content($fa-var-ellipsis-h); }
|
||||||
|
.#{$fa-css-prefix}-ellipsis-v:before { content: fa-content($fa-var-ellipsis-v); }
|
||||||
|
.#{$fa-css-prefix}-rss-square:before { content: fa-content($fa-var-rss-square); }
|
||||||
|
.#{$fa-css-prefix}-play-circle:before { content: fa-content($fa-var-play-circle); }
|
||||||
|
.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket); }
|
||||||
|
.#{$fa-css-prefix}-minus-square:before { content: fa-content($fa-var-minus-square); }
|
||||||
|
.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square-o); }
|
||||||
|
.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up); }
|
||||||
|
.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down); }
|
||||||
|
.#{$fa-css-prefix}-check-square:before { content: fa-content($fa-var-check-square); }
|
||||||
|
.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pencil-square); }
|
||||||
|
.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square); }
|
||||||
|
.#{$fa-css-prefix}-share-square:before { content: fa-content($fa-var-share-square); }
|
||||||
|
.#{$fa-css-prefix}-compass:before { content: fa-content($fa-var-compass); }
|
||||||
|
.#{$fa-css-prefix}-toggle-down:before,
|
||||||
|
.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-o-down); }
|
||||||
|
.#{$fa-css-prefix}-toggle-up:before,
|
||||||
|
.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-o-up); }
|
||||||
|
.#{$fa-css-prefix}-toggle-right:before,
|
||||||
|
.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-o-right); }
|
||||||
|
.#{$fa-css-prefix}-euro:before,
|
||||||
|
.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-eur); }
|
||||||
|
.#{$fa-css-prefix}-pound:before,
|
||||||
|
.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-gbp); }
|
||||||
|
.#{$fa-css-prefix}-dollar:before,
|
||||||
|
.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-usd); }
|
||||||
|
.#{$fa-css-prefix}-rupee:before,
|
||||||
|
.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-inr); }
|
||||||
|
.#{$fa-css-prefix}-cny:before,
|
||||||
|
.#{$fa-css-prefix}-rmb:before,
|
||||||
|
.#{$fa-css-prefix}-yen:before,
|
||||||
|
.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-jpy); }
|
||||||
|
.#{$fa-css-prefix}-ruble:before,
|
||||||
|
.#{$fa-css-prefix}-rouble:before,
|
||||||
|
.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-rub); }
|
||||||
|
.#{$fa-css-prefix}-won:before,
|
||||||
|
.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-krw); }
|
||||||
|
.#{$fa-css-prefix}-bitcoin:before,
|
||||||
|
.#{$fa-css-prefix}-btc:before { content: fa-content($fa-var-btc); }
|
||||||
|
.#{$fa-css-prefix}-file:before { content: fa-content($fa-var-file); }
|
||||||
|
.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-text); }
|
||||||
|
.#{$fa-css-prefix}-sort-alpha-down:before,
|
||||||
|
.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-asc); }
|
||||||
|
.#{$fa-css-prefix}-sort-alpha-up:before,
|
||||||
|
.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-desc); }
|
||||||
|
.#{$fa-css-prefix}-sort-amount-down:before,
|
||||||
|
.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-asc); }
|
||||||
|
.#{$fa-css-prefix}-sort-amount-up:before,
|
||||||
|
.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-desc); }
|
||||||
|
.#{$fa-css-prefix}-sort-numeric-down:before,
|
||||||
|
.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-asc); }
|
||||||
|
.#{$fa-css-prefix}-sort-numeric-up:before,
|
||||||
|
.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-desc); }
|
||||||
|
.#{$fa-css-prefix}-thumbs-up:before { content: fa-content($fa-var-thumbs-up); }
|
||||||
|
.#{$fa-css-prefix}-thumbs-down:before { content: fa-content($fa-var-thumbs-down); }
|
||||||
|
.#{$fa-css-prefix}-youtube-square:before { content: fa-content($fa-var-youtube-square); }
|
||||||
|
.#{$fa-css-prefix}-youtube:before { content: fa-content($fa-var-youtube); }
|
||||||
|
.#{$fa-css-prefix}-xing:before { content: fa-content($fa-var-xing); }
|
||||||
|
.#{$fa-css-prefix}-xing-square:before { content: fa-content($fa-var-xing-square); }
|
||||||
|
.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube-play); }
|
||||||
|
.#{$fa-css-prefix}-dropbox:before { content: fa-content($fa-var-dropbox); }
|
||||||
|
.#{$fa-css-prefix}-stack-overflow:before { content: fa-content($fa-var-stack-overflow); }
|
||||||
|
.#{$fa-css-prefix}-instagram:before { content: fa-content($fa-var-instagram); }
|
||||||
|
.#{$fa-css-prefix}-flickr:before { content: fa-content($fa-var-flickr); }
|
||||||
|
.#{$fa-css-prefix}-adn:before { content: fa-content($fa-var-adn); }
|
||||||
|
.#{$fa-css-prefix}-bitbucket:before { content: fa-content($fa-var-bitbucket); }
|
||||||
|
.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket-square); }
|
||||||
|
.#{$fa-css-prefix}-tumblr:before { content: fa-content($fa-var-tumblr); }
|
||||||
|
.#{$fa-css-prefix}-tumblr-square:before { content: fa-content($fa-var-tumblr-square); }
|
||||||
|
.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-down); }
|
||||||
|
.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-up); }
|
||||||
|
.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-left); }
|
||||||
|
.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-right); }
|
||||||
|
.#{$fa-css-prefix}-apple:before { content: fa-content($fa-var-apple); }
|
||||||
|
.#{$fa-css-prefix}-windows:before { content: fa-content($fa-var-windows); }
|
||||||
|
.#{$fa-css-prefix}-android:before { content: fa-content($fa-var-android); }
|
||||||
|
.#{$fa-css-prefix}-linux:before { content: fa-content($fa-var-linux); }
|
||||||
|
.#{$fa-css-prefix}-dribbble:before { content: fa-content($fa-var-dribbble); }
|
||||||
|
.#{$fa-css-prefix}-skype:before { content: fa-content($fa-var-skype); }
|
||||||
|
.#{$fa-css-prefix}-foursquare:before { content: fa-content($fa-var-foursquare); }
|
||||||
|
.#{$fa-css-prefix}-trello:before { content: fa-content($fa-var-trello); }
|
||||||
|
.#{$fa-css-prefix}-female:before { content: fa-content($fa-var-female); }
|
||||||
|
.#{$fa-css-prefix}-male:before { content: fa-content($fa-var-male); }
|
||||||
|
.#{$fa-css-prefix}-gittip:before,
|
||||||
|
.#{$fa-css-prefix}-gratipay:before { content: fa-content($fa-var-gratipay); }
|
||||||
|
.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun-o); }
|
||||||
|
.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon-o); }
|
||||||
|
.#{$fa-css-prefix}-archive:before { content: fa-content($fa-var-archive); }
|
||||||
|
.#{$fa-css-prefix}-bug:before { content: fa-content($fa-var-bug); }
|
||||||
|
.#{$fa-css-prefix}-vk:before { content: fa-content($fa-var-vk); }
|
||||||
|
.#{$fa-css-prefix}-weibo:before { content: fa-content($fa-var-weibo); }
|
||||||
|
.#{$fa-css-prefix}-renren:before { content: fa-content($fa-var-renren); }
|
||||||
|
.#{$fa-css-prefix}-pagelines:before { content: fa-content($fa-var-pagelines); }
|
||||||
|
.#{$fa-css-prefix}-stack-exchange:before { content: fa-content($fa-var-stack-exchange); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-circle-o-right); }
|
||||||
|
.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-circle-o-left); }
|
||||||
|
.#{$fa-css-prefix}-toggle-left:before,
|
||||||
|
.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-o-left); }
|
||||||
|
.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-wheelchair:before { content: fa-content($fa-var-wheelchair); }
|
||||||
|
.#{$fa-css-prefix}-vimeo-square:before { content: fa-content($fa-var-vimeo-square); }
|
||||||
|
.#{$fa-css-prefix}-turkish-lira:before,
|
||||||
|
.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-try); }
|
||||||
|
.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square-o); }
|
||||||
|
.#{$fa-css-prefix}-space-shuttle:before { content: fa-content($fa-var-space-shuttle); }
|
||||||
|
.#{$fa-css-prefix}-slack:before { content: fa-content($fa-var-slack); }
|
||||||
|
.#{$fa-css-prefix}-envelope-square:before { content: fa-content($fa-var-envelope-square); }
|
||||||
|
.#{$fa-css-prefix}-wordpress:before { content: fa-content($fa-var-wordpress); }
|
||||||
|
.#{$fa-css-prefix}-openid:before { content: fa-content($fa-var-openid); }
|
||||||
|
.#{$fa-css-prefix}-institution:before,
|
||||||
|
.#{$fa-css-prefix}-bank:before,
|
||||||
|
.#{$fa-css-prefix}-university:before { content: fa-content($fa-var-university); }
|
||||||
|
.#{$fa-css-prefix}-mortar-board:before,
|
||||||
|
.#{$fa-css-prefix}-graduation-cap:before { content: fa-content($fa-var-graduation-cap); }
|
||||||
|
.#{$fa-css-prefix}-yahoo:before { content: fa-content($fa-var-yahoo); }
|
||||||
|
.#{$fa-css-prefix}-google:before { content: fa-content($fa-var-google); }
|
||||||
|
.#{$fa-css-prefix}-reddit:before { content: fa-content($fa-var-reddit); }
|
||||||
|
.#{$fa-css-prefix}-reddit-square:before { content: fa-content($fa-var-reddit-square); }
|
||||||
|
.#{$fa-css-prefix}-stumbleupon-circle:before { content: fa-content($fa-var-stumbleupon-circle); }
|
||||||
|
.#{$fa-css-prefix}-stumbleupon:before { content: fa-content($fa-var-stumbleupon); }
|
||||||
|
.#{$fa-css-prefix}-delicious:before { content: fa-content($fa-var-delicious); }
|
||||||
|
.#{$fa-css-prefix}-digg:before { content: fa-content($fa-var-digg); }
|
||||||
|
.#{$fa-css-prefix}-drupal:before { content: fa-content($fa-var-drupal); }
|
||||||
|
.#{$fa-css-prefix}-joomla:before { content: fa-content($fa-var-joomla); }
|
||||||
|
.#{$fa-css-prefix}-language:before { content: fa-content($fa-var-language); }
|
||||||
|
.#{$fa-css-prefix}-fax:before { content: fa-content($fa-var-fax); }
|
||||||
|
.#{$fa-css-prefix}-building:before { content: fa-content($fa-var-building); }
|
||||||
|
.#{$fa-css-prefix}-child:before { content: fa-content($fa-var-child); }
|
||||||
|
.#{$fa-css-prefix}-paw:before { content: fa-content($fa-var-paw); }
|
||||||
|
.#{$fa-css-prefix}-utensil-spoon:before,
|
||||||
|
.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-spoon); }
|
||||||
|
.#{$fa-css-prefix}-cube:before { content: fa-content($fa-var-cube); }
|
||||||
|
.#{$fa-css-prefix}-cubes:before { content: fa-content($fa-var-cubes); }
|
||||||
|
.#{$fa-css-prefix}-behance:before { content: fa-content($fa-var-behance); }
|
||||||
|
.#{$fa-css-prefix}-behance-square:before { content: fa-content($fa-var-behance-square); }
|
||||||
|
.#{$fa-css-prefix}-steam:before { content: fa-content($fa-var-steam); }
|
||||||
|
.#{$fa-css-prefix}-steam-square:before { content: fa-content($fa-var-steam-square); }
|
||||||
|
.#{$fa-css-prefix}-recycle:before { content: fa-content($fa-var-recycle); }
|
||||||
|
.#{$fa-css-prefix}-automobile:before,
|
||||||
|
.#{$fa-css-prefix}-car:before { content: fa-content($fa-var-car); }
|
||||||
|
.#{$fa-css-prefix}-cab:before,
|
||||||
|
.#{$fa-css-prefix}-taxi:before { content: fa-content($fa-var-taxi); }
|
||||||
|
.#{$fa-css-prefix}-tree:before { content: fa-content($fa-var-tree); }
|
||||||
|
.#{$fa-css-prefix}-spotify:before { content: fa-content($fa-var-spotify); }
|
||||||
|
.#{$fa-css-prefix}-deviantart:before { content: fa-content($fa-var-deviantart); }
|
||||||
|
.#{$fa-css-prefix}-soundcloud:before { content: fa-content($fa-var-soundcloud); }
|
||||||
|
.#{$fa-css-prefix}-database:before { content: fa-content($fa-var-database); }
|
||||||
|
.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf-o); }
|
||||||
|
.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word-o); }
|
||||||
|
.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel-o); }
|
||||||
|
.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint-o); }
|
||||||
|
.#{$fa-css-prefix}-file-photo-o:before,
|
||||||
|
.#{$fa-css-prefix}-file-picture-o:before,
|
||||||
|
.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image-o); }
|
||||||
|
.#{$fa-css-prefix}-file-zip-o:before,
|
||||||
|
.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive-o); }
|
||||||
|
.#{$fa-css-prefix}-file-sound-o:before,
|
||||||
|
.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio-o); }
|
||||||
|
.#{$fa-css-prefix}-file-movie-o:before,
|
||||||
|
.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video-o); }
|
||||||
|
.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code-o); }
|
||||||
|
.#{$fa-css-prefix}-vine:before { content: fa-content($fa-var-vine); }
|
||||||
|
.#{$fa-css-prefix}-codepen:before { content: fa-content($fa-var-codepen); }
|
||||||
|
.#{$fa-css-prefix}-jsfiddle:before { content: fa-content($fa-var-jsfiddle); }
|
||||||
|
.#{$fa-css-prefix}-life-bouy:before,
|
||||||
|
.#{$fa-css-prefix}-life-buoy:before,
|
||||||
|
.#{$fa-css-prefix}-life-saver:before,
|
||||||
|
.#{$fa-css-prefix}-support:before,
|
||||||
|
.#{$fa-css-prefix}-life-ring:before { content: fa-content($fa-var-life-ring); }
|
||||||
|
.#{$fa-css-prefix}-circle-o-notch:before { content: fa-content($fa-var-circle-o-notch); }
|
||||||
|
.#{$fa-css-prefix}-ra:before,
|
||||||
|
.#{$fa-css-prefix}-resistance:before,
|
||||||
|
.#{$fa-css-prefix}-rebel:before { content: fa-content($fa-var-rebel); }
|
||||||
|
.#{$fa-css-prefix}-ge:before,
|
||||||
|
.#{$fa-css-prefix}-empire:before { content: fa-content($fa-var-empire); }
|
||||||
|
.#{$fa-css-prefix}-git-square:before { content: fa-content($fa-var-git-square); }
|
||||||
|
.#{$fa-css-prefix}-git:before { content: fa-content($fa-var-git); }
|
||||||
|
.#{$fa-css-prefix}-y-combinator-square:before,
|
||||||
|
.#{$fa-css-prefix}-yc-square:before,
|
||||||
|
.#{$fa-css-prefix}-hacker-news:before { content: fa-content($fa-var-hacker-news); }
|
||||||
|
.#{$fa-css-prefix}-tencent-weibo:before { content: fa-content($fa-var-tencent-weibo); }
|
||||||
|
.#{$fa-css-prefix}-qq:before { content: fa-content($fa-var-qq); }
|
||||||
|
.#{$fa-css-prefix}-wechat:before,
|
||||||
|
.#{$fa-css-prefix}-weixin:before { content: fa-content($fa-var-weixin); }
|
||||||
|
.#{$fa-css-prefix}-send:before,
|
||||||
|
.#{$fa-css-prefix}-paper-plane:before { content: fa-content($fa-var-paper-plane); }
|
||||||
|
.#{$fa-css-prefix}-send-o:before,
|
||||||
|
.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane-o); }
|
||||||
|
.#{$fa-css-prefix}-history:before { content: fa-content($fa-var-history); }
|
||||||
|
.#{$fa-css-prefix}-circle-thin:before { content: fa-content($fa-var-circle-thin); }
|
||||||
|
.#{$fa-css-prefix}-heading:before,
|
||||||
|
.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-header); }
|
||||||
|
.#{$fa-css-prefix}-paragraph:before { content: fa-content($fa-var-paragraph); }
|
||||||
|
.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders); }
|
||||||
|
.#{$fa-css-prefix}-share-alt:before { content: fa-content($fa-var-share-alt); }
|
||||||
|
.#{$fa-css-prefix}-share-alt-square:before { content: fa-content($fa-var-share-alt-square); }
|
||||||
|
.#{$fa-css-prefix}-bomb:before { content: fa-content($fa-var-bomb); }
|
||||||
|
.#{$fa-css-prefix}-soccer-ball-o:before,
|
||||||
|
.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol-o); }
|
||||||
|
.#{$fa-css-prefix}-tty:before { content: fa-content($fa-var-tty); }
|
||||||
|
.#{$fa-css-prefix}-binoculars:before { content: fa-content($fa-var-binoculars); }
|
||||||
|
.#{$fa-css-prefix}-plug:before { content: fa-content($fa-var-plug); }
|
||||||
|
.#{$fa-css-prefix}-slideshare:before { content: fa-content($fa-var-slideshare); }
|
||||||
|
.#{$fa-css-prefix}-twitch:before { content: fa-content($fa-var-twitch); }
|
||||||
|
.#{$fa-css-prefix}-yelp:before { content: fa-content($fa-var-yelp); }
|
||||||
|
.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper-o); }
|
||||||
|
.#{$fa-css-prefix}-wifi:before { content: fa-content($fa-var-wifi); }
|
||||||
|
.#{$fa-css-prefix}-calculator:before { content: fa-content($fa-var-calculator); }
|
||||||
|
.#{$fa-css-prefix}-paypal:before { content: fa-content($fa-var-paypal); }
|
||||||
|
.#{$fa-css-prefix}-google-wallet:before { content: fa-content($fa-var-google-wallet); }
|
||||||
|
.#{$fa-css-prefix}-cc-visa:before { content: fa-content($fa-var-cc-visa); }
|
||||||
|
.#{$fa-css-prefix}-cc-mastercard:before { content: fa-content($fa-var-cc-mastercard); }
|
||||||
|
.#{$fa-css-prefix}-cc-discover:before { content: fa-content($fa-var-cc-discover); }
|
||||||
|
.#{$fa-css-prefix}-cc-amex:before { content: fa-content($fa-var-cc-amex); }
|
||||||
|
.#{$fa-css-prefix}-cc-paypal:before { content: fa-content($fa-var-cc-paypal); }
|
||||||
|
.#{$fa-css-prefix}-cc-stripe:before { content: fa-content($fa-var-cc-stripe); }
|
||||||
|
.#{$fa-css-prefix}-bell-slash:before { content: fa-content($fa-var-bell-slash); }
|
||||||
|
.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash-o); }
|
||||||
|
.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash); }
|
||||||
|
.#{$fa-css-prefix}-copyright:before { content: fa-content($fa-var-copyright); }
|
||||||
|
.#{$fa-css-prefix}-at:before { content: fa-content($fa-var-at); }
|
||||||
|
.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eyedropper); }
|
||||||
|
.#{$fa-css-prefix}-paint-brush:before { content: fa-content($fa-var-paint-brush); }
|
||||||
|
.#{$fa-css-prefix}-birthday-cake:before { content: fa-content($fa-var-birthday-cake); }
|
||||||
|
.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-area-chart); }
|
||||||
|
.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-pie-chart); }
|
||||||
|
.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-line-chart); }
|
||||||
|
.#{$fa-css-prefix}-lastfm:before { content: fa-content($fa-var-lastfm); }
|
||||||
|
.#{$fa-css-prefix}-lastfm-square:before { content: fa-content($fa-var-lastfm-square); }
|
||||||
|
.#{$fa-css-prefix}-toggle-off:before { content: fa-content($fa-var-toggle-off); }
|
||||||
|
.#{$fa-css-prefix}-toggle-on:before { content: fa-content($fa-var-toggle-on); }
|
||||||
|
.#{$fa-css-prefix}-bicycle:before { content: fa-content($fa-var-bicycle); }
|
||||||
|
.#{$fa-css-prefix}-bus:before { content: fa-content($fa-var-bus); }
|
||||||
|
.#{$fa-css-prefix}-ioxhost:before { content: fa-content($fa-var-ioxhost); }
|
||||||
|
.#{$fa-css-prefix}-angellist:before { content: fa-content($fa-var-angellist); }
|
||||||
|
.#{$fa-css-prefix}-closed-captioning:before,
|
||||||
|
.#{$fa-css-prefix}-cc:before { content: fa-content($fa-var-cc); }
|
||||||
|
.#{$fa-css-prefix}-shekel:before,
|
||||||
|
.#{$fa-css-prefix}-sheqel:before,
|
||||||
|
.#{$fa-css-prefix}-ils:before { content: fa-content($fa-var-ils); }
|
||||||
|
.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-meanpath); }
|
||||||
|
.#{$fa-css-prefix}-buysellads:before { content: fa-content($fa-var-buysellads); }
|
||||||
|
.#{$fa-css-prefix}-connectdevelop:before { content: fa-content($fa-var-connectdevelop); }
|
||||||
|
.#{$fa-css-prefix}-dashcube:before { content: fa-content($fa-var-dashcube); }
|
||||||
|
.#{$fa-css-prefix}-forumbee:before { content: fa-content($fa-var-forumbee); }
|
||||||
|
.#{$fa-css-prefix}-leanpub:before { content: fa-content($fa-var-leanpub); }
|
||||||
|
.#{$fa-css-prefix}-sellsy:before { content: fa-content($fa-var-sellsy); }
|
||||||
|
.#{$fa-css-prefix}-shirtsinbulk:before { content: fa-content($fa-var-shirtsinbulk); }
|
||||||
|
.#{$fa-css-prefix}-simplybuilt:before { content: fa-content($fa-var-simplybuilt); }
|
||||||
|
.#{$fa-css-prefix}-skyatlas:before { content: fa-content($fa-var-skyatlas); }
|
||||||
|
.#{$fa-css-prefix}-cart-plus:before { content: fa-content($fa-var-cart-plus); }
|
||||||
|
.#{$fa-css-prefix}-cart-arrow-down:before { content: fa-content($fa-var-cart-arrow-down); }
|
||||||
|
.#{$fa-css-prefix}-gem:before,
|
||||||
|
.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-diamond); }
|
||||||
|
.#{$fa-css-prefix}-ship:before { content: fa-content($fa-var-ship); }
|
||||||
|
.#{$fa-css-prefix}-user-secret:before { content: fa-content($fa-var-user-secret); }
|
||||||
|
.#{$fa-css-prefix}-motorcycle:before { content: fa-content($fa-var-motorcycle); }
|
||||||
|
.#{$fa-css-prefix}-street-view:before { content: fa-content($fa-var-street-view); }
|
||||||
|
.#{$fa-css-prefix}-heartbeat:before { content: fa-content($fa-var-heartbeat); }
|
||||||
|
.#{$fa-css-prefix}-venus:before { content: fa-content($fa-var-venus); }
|
||||||
|
.#{$fa-css-prefix}-mars:before { content: fa-content($fa-var-mars); }
|
||||||
|
.#{$fa-css-prefix}-mercury:before { content: fa-content($fa-var-mercury); }
|
||||||
|
.#{$fa-css-prefix}-intersex:before,
|
||||||
|
.#{$fa-css-prefix}-transgender:before { content: fa-content($fa-var-transgender); }
|
||||||
|
.#{$fa-css-prefix}-transgender-alt:before { content: fa-content($fa-var-transgender-alt); }
|
||||||
|
.#{$fa-css-prefix}-venus-double:before { content: fa-content($fa-var-venus-double); }
|
||||||
|
.#{$fa-css-prefix}-mars-double:before { content: fa-content($fa-var-mars-double); }
|
||||||
|
.#{$fa-css-prefix}-venus-mars:before { content: fa-content($fa-var-venus-mars); }
|
||||||
|
.#{$fa-css-prefix}-mars-stroke:before { content: fa-content($fa-var-mars-stroke); }
|
||||||
|
.#{$fa-css-prefix}-mars-stroke-v:before { content: fa-content($fa-var-mars-stroke-v); }
|
||||||
|
.#{$fa-css-prefix}-mars-stroke-h:before { content: fa-content($fa-var-mars-stroke-h); }
|
||||||
|
.#{$fa-css-prefix}-neuter:before { content: fa-content($fa-var-neuter); }
|
||||||
|
.#{$fa-css-prefix}-genderless:before { content: fa-content($fa-var-genderless); }
|
||||||
|
.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook-official); }
|
||||||
|
.#{$fa-css-prefix}-pinterest-p:before { content: fa-content($fa-var-pinterest-p); }
|
||||||
|
.#{$fa-css-prefix}-whatsapp:before { content: fa-content($fa-var-whatsapp); }
|
||||||
|
.#{$fa-css-prefix}-server:before { content: fa-content($fa-var-server); }
|
||||||
|
.#{$fa-css-prefix}-user-plus:before { content: fa-content($fa-var-user-plus); }
|
||||||
|
.#{$fa-css-prefix}-user-times:before { content: fa-content($fa-var-user-times); }
|
||||||
|
.#{$fa-css-prefix}-hotel:before,
|
||||||
|
.#{$fa-css-prefix}-bed:before { content: fa-content($fa-var-bed); }
|
||||||
|
.#{$fa-css-prefix}-viacoin:before { content: fa-content($fa-var-viacoin); }
|
||||||
|
.#{$fa-css-prefix}-train:before { content: fa-content($fa-var-train); }
|
||||||
|
.#{$fa-css-prefix}-subway:before { content: fa-content($fa-var-subway); }
|
||||||
|
.#{$fa-css-prefix}-medium:before { content: fa-content($fa-var-medium); }
|
||||||
|
.#{$fa-css-prefix}-medium-square:before { content: fa-content($fa-var-medium-square); }
|
||||||
|
.#{$fa-css-prefix}-yc:before,
|
||||||
|
.#{$fa-css-prefix}-y-combinator:before { content: fa-content($fa-var-y-combinator); }
|
||||||
|
.#{$fa-css-prefix}-optin-monster:before { content: fa-content($fa-var-optin-monster); }
|
||||||
|
.#{$fa-css-prefix}-opencart:before { content: fa-content($fa-var-opencart); }
|
||||||
|
.#{$fa-css-prefix}-expeditedssl:before { content: fa-content($fa-var-expeditedssl); }
|
||||||
|
.#{$fa-css-prefix}-battery-4:before,
|
||||||
|
.#{$fa-css-prefix}-battery:before,
|
||||||
|
.#{$fa-css-prefix}-battery-full:before { content: fa-content($fa-var-battery-full); }
|
||||||
|
.#{$fa-css-prefix}-battery-3:before,
|
||||||
|
.#{$fa-css-prefix}-battery-three-quarters:before { content: fa-content($fa-var-battery-three-quarters); }
|
||||||
|
.#{$fa-css-prefix}-battery-2:before,
|
||||||
|
.#{$fa-css-prefix}-battery-half:before { content: fa-content($fa-var-battery-half); }
|
||||||
|
.#{$fa-css-prefix}-battery-1:before,
|
||||||
|
.#{$fa-css-prefix}-battery-quarter:before { content: fa-content($fa-var-battery-quarter); }
|
||||||
|
.#{$fa-css-prefix}-battery-0:before,
|
||||||
|
.#{$fa-css-prefix}-battery-empty:before { content: fa-content($fa-var-battery-empty); }
|
||||||
|
.#{$fa-css-prefix}-mouse-pointer:before { content: fa-content($fa-var-mouse-pointer); }
|
||||||
|
.#{$fa-css-prefix}-i-cursor:before { content: fa-content($fa-var-i-cursor); }
|
||||||
|
.#{$fa-css-prefix}-object-group:before { content: fa-content($fa-var-object-group); }
|
||||||
|
.#{$fa-css-prefix}-object-ungroup:before { content: fa-content($fa-var-object-ungroup); }
|
||||||
|
.#{$fa-css-prefix}-sticky-note:before { content: fa-content($fa-var-sticky-note); }
|
||||||
|
.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note-o); }
|
||||||
|
.#{$fa-css-prefix}-cc-jcb:before { content: fa-content($fa-var-cc-jcb); }
|
||||||
|
.#{$fa-css-prefix}-cc-diners-club:before { content: fa-content($fa-var-cc-diners-club); }
|
||||||
|
.#{$fa-css-prefix}-clone:before { content: fa-content($fa-var-clone); }
|
||||||
|
.#{$fa-css-prefix}-balance-scale:before { content: fa-content($fa-var-balance-scale); }
|
||||||
|
.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass-o); }
|
||||||
|
.#{$fa-css-prefix}-hourglass-1:before,
|
||||||
|
.#{$fa-css-prefix}-hourglass-start:before { content: fa-content($fa-var-hourglass-start); }
|
||||||
|
.#{$fa-css-prefix}-hourglass-2:before,
|
||||||
|
.#{$fa-css-prefix}-hourglass-half:before { content: fa-content($fa-var-hourglass-half); }
|
||||||
|
.#{$fa-css-prefix}-hourglass-3:before,
|
||||||
|
.#{$fa-css-prefix}-hourglass-end:before { content: fa-content($fa-var-hourglass-end); }
|
||||||
|
.#{$fa-css-prefix}-hourglass:before { content: fa-content($fa-var-hourglass); }
|
||||||
|
.#{$fa-css-prefix}-hand-grab-o:before,
|
||||||
|
.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-stop-o:before,
|
||||||
|
.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer-o); }
|
||||||
|
.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace-o); }
|
||||||
|
.#{$fa-css-prefix}-trademark:before { content: fa-content($fa-var-trademark); }
|
||||||
|
.#{$fa-css-prefix}-registered:before { content: fa-content($fa-var-registered); }
|
||||||
|
.#{$fa-css-prefix}-creative-commons:before { content: fa-content($fa-var-creative-commons); }
|
||||||
|
.#{$fa-css-prefix}-gg:before { content: fa-content($fa-var-gg); }
|
||||||
|
.#{$fa-css-prefix}-gg-circle:before { content: fa-content($fa-var-gg-circle); }
|
||||||
|
.#{$fa-css-prefix}-tripadvisor:before { content: fa-content($fa-var-tripadvisor); }
|
||||||
|
.#{$fa-css-prefix}-odnoklassniki:before { content: fa-content($fa-var-odnoklassniki); }
|
||||||
|
.#{$fa-css-prefix}-odnoklassniki-square:before { content: fa-content($fa-var-odnoklassniki-square); }
|
||||||
|
.#{$fa-css-prefix}-get-pocket:before { content: fa-content($fa-var-get-pocket); }
|
||||||
|
.#{$fa-css-prefix}-wikipedia-w:before { content: fa-content($fa-var-wikipedia-w); }
|
||||||
|
.#{$fa-css-prefix}-safari:before { content: fa-content($fa-var-safari); }
|
||||||
|
.#{$fa-css-prefix}-chrome:before { content: fa-content($fa-var-chrome); }
|
||||||
|
.#{$fa-css-prefix}-firefox:before { content: fa-content($fa-var-firefox); }
|
||||||
|
.#{$fa-css-prefix}-opera:before { content: fa-content($fa-var-opera); }
|
||||||
|
.#{$fa-css-prefix}-internet-explorer:before { content: fa-content($fa-var-internet-explorer); }
|
||||||
|
.#{$fa-css-prefix}-tv:before,
|
||||||
|
.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-television); }
|
||||||
|
.#{$fa-css-prefix}-contao:before { content: fa-content($fa-var-contao); }
|
||||||
|
.#{$fa-css-prefix}-500px:before { content: fa-content($fa-var-500px); }
|
||||||
|
.#{$fa-css-prefix}-amazon:before { content: fa-content($fa-var-amazon); }
|
||||||
|
.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus-o); }
|
||||||
|
.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus-o); }
|
||||||
|
.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times-o); }
|
||||||
|
.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check-o); }
|
||||||
|
.#{$fa-css-prefix}-industry:before { content: fa-content($fa-var-industry); }
|
||||||
|
.#{$fa-css-prefix}-map-pin:before { content: fa-content($fa-var-map-pin); }
|
||||||
|
.#{$fa-css-prefix}-map-signs:before { content: fa-content($fa-var-map-signs); }
|
||||||
|
.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map-o); }
|
||||||
|
.#{$fa-css-prefix}-map:before { content: fa-content($fa-var-map); }
|
||||||
|
.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-commenting); }
|
||||||
|
.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-commenting-o); }
|
||||||
|
.#{$fa-css-prefix}-houzz:before { content: fa-content($fa-var-houzz); }
|
||||||
|
.#{$fa-css-prefix}-vimeo-v:before,
|
||||||
|
.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo); }
|
||||||
|
.#{$fa-css-prefix}-black-tie:before { content: fa-content($fa-var-black-tie); }
|
||||||
|
.#{$fa-css-prefix}-fonticons:before { content: fa-content($fa-var-fonticons); }
|
||||||
|
.#{$fa-css-prefix}-reddit-alien:before { content: fa-content($fa-var-reddit-alien); }
|
||||||
|
.#{$fa-css-prefix}-edge:before { content: fa-content($fa-var-edge); }
|
||||||
|
.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card-alt); }
|
||||||
|
.#{$fa-css-prefix}-codiepie:before { content: fa-content($fa-var-codiepie); }
|
||||||
|
.#{$fa-css-prefix}-modx:before { content: fa-content($fa-var-modx); }
|
||||||
|
.#{$fa-css-prefix}-fort-awesome:before { content: fa-content($fa-var-fort-awesome); }
|
||||||
|
.#{$fa-css-prefix}-usb:before { content: fa-content($fa-var-usb); }
|
||||||
|
.#{$fa-css-prefix}-product-hunt:before { content: fa-content($fa-var-product-hunt); }
|
||||||
|
.#{$fa-css-prefix}-mixcloud:before { content: fa-content($fa-var-mixcloud); }
|
||||||
|
.#{$fa-css-prefix}-scribd:before { content: fa-content($fa-var-scribd); }
|
||||||
|
.#{$fa-css-prefix}-pause-circle:before { content: fa-content($fa-var-pause-circle); }
|
||||||
|
.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-stop-circle:before { content: fa-content($fa-var-stop-circle); }
|
||||||
|
.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-shopping-bag:before { content: fa-content($fa-var-shopping-bag); }
|
||||||
|
.#{$fa-css-prefix}-shopping-basket:before { content: fa-content($fa-var-shopping-basket); }
|
||||||
|
.#{$fa-css-prefix}-hashtag:before { content: fa-content($fa-var-hashtag); }
|
||||||
|
.#{$fa-css-prefix}-bluetooth:before { content: fa-content($fa-var-bluetooth); }
|
||||||
|
.#{$fa-css-prefix}-bluetooth-b:before { content: fa-content($fa-var-bluetooth-b); }
|
||||||
|
.#{$fa-css-prefix}-percent:before { content: fa-content($fa-var-percent); }
|
||||||
|
.#{$fa-css-prefix}-gitlab:before { content: fa-content($fa-var-gitlab); }
|
||||||
|
.#{$fa-css-prefix}-wpbeginner:before { content: fa-content($fa-var-wpbeginner); }
|
||||||
|
.#{$fa-css-prefix}-wpforms:before { content: fa-content($fa-var-wpforms); }
|
||||||
|
.#{$fa-css-prefix}-envira:before { content: fa-content($fa-var-envira); }
|
||||||
|
.#{$fa-css-prefix}-universal-access:before { content: fa-content($fa-var-universal-access); }
|
||||||
|
.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-wheelchair-alt); }
|
||||||
|
.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-blind:before { content: fa-content($fa-var-blind); }
|
||||||
|
.#{$fa-css-prefix}-audio-description:before { content: fa-content($fa-var-audio-description); }
|
||||||
|
.#{$fa-css-prefix}-phone-volume:before,
|
||||||
|
.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-volume-control-phone); }
|
||||||
|
.#{$fa-css-prefix}-braille:before { content: fa-content($fa-var-braille); }
|
||||||
|
.#{$fa-css-prefix}-assistive-listening-systems:before { content: fa-content($fa-var-assistive-listening-systems); }
|
||||||
|
.#{$fa-css-prefix}-asl-interpreting:before,
|
||||||
|
.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); }
|
||||||
|
.#{$fa-css-prefix}-deafness:before,
|
||||||
|
.#{$fa-css-prefix}-hard-of-hearing:before,
|
||||||
|
.#{$fa-css-prefix}-deaf:before { content: fa-content($fa-var-deaf); }
|
||||||
|
.#{$fa-css-prefix}-glide:before { content: fa-content($fa-var-glide); }
|
||||||
|
.#{$fa-css-prefix}-glide-g:before { content: fa-content($fa-var-glide-g); }
|
||||||
|
.#{$fa-css-prefix}-signing:before,
|
||||||
|
.#{$fa-css-prefix}-sign-language:before { content: fa-content($fa-var-sign-language); }
|
||||||
|
.#{$fa-css-prefix}-low-vision:before { content: fa-content($fa-var-low-vision); }
|
||||||
|
.#{$fa-css-prefix}-viadeo:before { content: fa-content($fa-var-viadeo); }
|
||||||
|
.#{$fa-css-prefix}-viadeo-square:before { content: fa-content($fa-var-viadeo-square); }
|
||||||
|
.#{$fa-css-prefix}-snapchat:before { content: fa-content($fa-var-snapchat); }
|
||||||
|
.#{$fa-css-prefix}-snapchat-ghost:before { content: fa-content($fa-var-snapchat-ghost); }
|
||||||
|
.#{$fa-css-prefix}-snapchat-square:before { content: fa-content($fa-var-snapchat-square); }
|
||||||
|
.#{$fa-css-prefix}-first-order:before { content: fa-content($fa-var-first-order); }
|
||||||
|
.#{$fa-css-prefix}-yoast:before { content: fa-content($fa-var-yoast); }
|
||||||
|
.#{$fa-css-prefix}-themeisle:before { content: fa-content($fa-var-themeisle); }
|
||||||
|
.#{$fa-css-prefix}-google-plus-circle:before,
|
||||||
|
.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus-official); }
|
||||||
|
.#{$fa-css-prefix}-fa:before,
|
||||||
|
.#{$fa-css-prefix}-font-awesome:before { content: fa-content($fa-var-font-awesome); }
|
||||||
|
.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake-o); }
|
||||||
|
.#{$fa-css-prefix}-envelope-open:before { content: fa-content($fa-var-envelope-open); }
|
||||||
|
.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open-o); }
|
||||||
|
.#{$fa-css-prefix}-linode:before { content: fa-content($fa-var-linode); }
|
||||||
|
.#{$fa-css-prefix}-address-book:before { content: fa-content($fa-var-address-book); }
|
||||||
|
.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book-o); }
|
||||||
|
.#{$fa-css-prefix}-vcard:before,
|
||||||
|
.#{$fa-css-prefix}-address-card:before { content: fa-content($fa-var-address-card); }
|
||||||
|
.#{$fa-css-prefix}-vcard-o:before,
|
||||||
|
.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card-o); }
|
||||||
|
.#{$fa-css-prefix}-user-circle:before { content: fa-content($fa-var-user-circle); }
|
||||||
|
.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle-o); }
|
||||||
|
.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user-o); }
|
||||||
|
.#{$fa-css-prefix}-id-badge:before { content: fa-content($fa-var-id-badge); }
|
||||||
|
.#{$fa-css-prefix}-drivers-license:before,
|
||||||
|
.#{$fa-css-prefix}-id-card:before { content: fa-content($fa-var-id-card); }
|
||||||
|
.#{$fa-css-prefix}-drivers-license-o:before,
|
||||||
|
.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card-o); }
|
||||||
|
.#{$fa-css-prefix}-quora:before { content: fa-content($fa-var-quora); }
|
||||||
|
.#{$fa-css-prefix}-free-code-camp:before { content: fa-content($fa-var-free-code-camp); }
|
||||||
|
.#{$fa-css-prefix}-telegram:before { content: fa-content($fa-var-telegram); }
|
||||||
|
.#{$fa-css-prefix}-thermometer-4:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-full:before { content: fa-content($fa-var-thermometer-full); }
|
||||||
|
.#{$fa-css-prefix}-thermometer-3:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-three-quarters:before { content: fa-content($fa-var-thermometer-three-quarters); }
|
||||||
|
.#{$fa-css-prefix}-thermometer-2:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-half:before { content: fa-content($fa-var-thermometer-half); }
|
||||||
|
.#{$fa-css-prefix}-thermometer-1:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-quarter:before { content: fa-content($fa-var-thermometer-quarter); }
|
||||||
|
.#{$fa-css-prefix}-thermometer-0:before,
|
||||||
|
.#{$fa-css-prefix}-thermometer-empty:before { content: fa-content($fa-var-thermometer-empty); }
|
||||||
|
.#{$fa-css-prefix}-shower:before { content: fa-content($fa-var-shower); }
|
||||||
|
.#{$fa-css-prefix}-bathtub:before,
|
||||||
|
.#{$fa-css-prefix}-s15:before,
|
||||||
|
.#{$fa-css-prefix}-bath:before { content: fa-content($fa-var-bath); }
|
||||||
|
.#{$fa-css-prefix}-podcast:before { content: fa-content($fa-var-podcast); }
|
||||||
|
.#{$fa-css-prefix}-window-maximize:before { content: fa-content($fa-var-window-maximize); }
|
||||||
|
.#{$fa-css-prefix}-window-minimize:before { content: fa-content($fa-var-window-minimize); }
|
||||||
|
.#{$fa-css-prefix}-window-restore:before { content: fa-content($fa-var-window-restore); }
|
||||||
|
.#{$fa-css-prefix}-times-rectangle:before,
|
||||||
|
.#{$fa-css-prefix}-window-close:before { content: fa-content($fa-var-window-close); }
|
||||||
|
.#{$fa-css-prefix}-times-rectangle-o:before,
|
||||||
|
.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close-o); }
|
||||||
|
.#{$fa-css-prefix}-bandcamp:before { content: fa-content($fa-var-bandcamp); }
|
||||||
|
.#{$fa-css-prefix}-grav:before { content: fa-content($fa-var-grav); }
|
||||||
|
.#{$fa-css-prefix}-etsy:before { content: fa-content($fa-var-etsy); }
|
||||||
|
.#{$fa-css-prefix}-imdb:before { content: fa-content($fa-var-imdb); }
|
||||||
|
.#{$fa-css-prefix}-ravelry:before { content: fa-content($fa-var-ravelry); }
|
||||||
|
.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-eercast); }
|
||||||
|
.#{$fa-css-prefix}-microchip:before { content: fa-content($fa-var-microchip); }
|
||||||
|
.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake-o); }
|
||||||
|
.#{$fa-css-prefix}-superpowers:before { content: fa-content($fa-var-superpowers); }
|
||||||
|
.#{$fa-css-prefix}-wpexplorer:before { content: fa-content($fa-var-wpexplorer); }
|
||||||
|
.#{$fa-css-prefix}-meetup:before { content: fa-content($fa-var-meetup); }
|
||||||
|
.#{$fa-css-prefix}-mastodon:before { content: fa-content($fa-var-mastodon); }
|
||||||
|
.#{$fa-css-prefix}-mastodon-alt:before { content: fa-content($fa-var-mastodon-alt); }
|
||||||
|
.#{$fa-css-prefix}-fork-circle:before,
|
||||||
|
.#{$fa-css-prefix}-fork-awesome:before { content: fa-content($fa-var-fork-awesome); }
|
||||||
|
.#{$fa-css-prefix}-peertube:before { content: fa-content($fa-var-peertube); }
|
||||||
|
.#{$fa-css-prefix}-diaspora:before { content: fa-content($fa-var-diaspora); }
|
||||||
|
.#{$fa-css-prefix}-friendica:before { content: fa-content($fa-var-friendica); }
|
||||||
|
.#{$fa-css-prefix}-gnu-social:before { content: fa-content($fa-var-gnu-social); }
|
||||||
|
.#{$fa-css-prefix}-liberapay-square:before { content: fa-content($fa-var-liberapay-square); }
|
||||||
|
.#{$fa-css-prefix}-liberapay:before { content: fa-content($fa-var-liberapay); }
|
||||||
|
.#{$fa-css-prefix}-ssb:before,
|
||||||
|
.#{$fa-css-prefix}-scuttlebutt:before { content: fa-content($fa-var-scuttlebutt); }
|
||||||
|
.#{$fa-css-prefix}-hubzilla:before { content: fa-content($fa-var-hubzilla); }
|
||||||
|
.#{$fa-css-prefix}-social-home:before { content: fa-content($fa-var-social-home); }
|
||||||
|
.#{$fa-css-prefix}-artstation:before { content: fa-content($fa-var-artstation); }
|
||||||
|
.#{$fa-css-prefix}-discord:before { content: fa-content($fa-var-discord); }
|
||||||
|
.#{$fa-css-prefix}-discord-alt:before { content: fa-content($fa-var-discord-alt); }
|
||||||
|
.#{$fa-css-prefix}-patreon:before { content: fa-content($fa-var-patreon); }
|
||||||
|
.#{$fa-css-prefix}-snowdrift:before { content: fa-content($fa-var-snowdrift); }
|
||||||
|
.#{$fa-css-prefix}-activitypub:before { content: fa-content($fa-var-activitypub); }
|
||||||
|
.#{$fa-css-prefix}-ethereum:before { content: fa-content($fa-var-ethereum); }
|
||||||
|
.#{$fa-css-prefix}-keybase:before { content: fa-content($fa-var-keybase); }
|
||||||
|
.#{$fa-css-prefix}-shaarli:before { content: fa-content($fa-var-shaarli); }
|
||||||
|
.#{$fa-css-prefix}-shaarli-o:before { content: fa-content($fa-var-shaarli-o); }
|
||||||
|
.#{$fa-css-prefix}-cut-key:before,
|
||||||
|
.#{$fa-css-prefix}-key-modern:before { content: fa-content($fa-var-key-modern); }
|
||||||
|
.#{$fa-css-prefix}-xmpp:before { content: fa-content($fa-var-xmpp); }
|
||||||
|
.#{$fa-css-prefix}-archive-org:before { content: fa-content($fa-var-archive-org); }
|
||||||
|
.#{$fa-css-prefix}-freedombox:before { content: fa-content($fa-var-freedombox); }
|
||||||
|
.#{$fa-css-prefix}-facebook-messenger:before { content: fa-content($fa-var-facebook-messenger); }
|
||||||
|
.#{$fa-css-prefix}-debian:before { content: fa-content($fa-var-debian); }
|
||||||
|
.#{$fa-css-prefix}-mastodon-square:before { content: fa-content($fa-var-mastodon-square); }
|
||||||
|
.#{$fa-css-prefix}-tipeee:before { content: fa-content($fa-var-tipeee); }
|
||||||
|
.#{$fa-css-prefix}-react:before { content: fa-content($fa-var-react); }
|
||||||
|
.#{$fa-css-prefix}-dogmazic:before { content: fa-content($fa-var-dogmazic); }
|
||||||
|
.#{$fa-css-prefix}-zotero:before { content: fa-content($fa-var-zotero); }
|
||||||
|
.#{$fa-css-prefix}-nodejs:before { content: fa-content($fa-var-nodejs); }
|
||||||
|
.#{$fa-css-prefix}-nextcloud:before { content: fa-content($fa-var-nextcloud); }
|
||||||
|
.#{$fa-css-prefix}-nextcloud-square:before { content: fa-content($fa-var-nextcloud-square); }
|
||||||
|
.#{$fa-css-prefix}-hackaday:before { content: fa-content($fa-var-hackaday); }
|
||||||
|
.#{$fa-css-prefix}-laravel:before { content: fa-content($fa-var-laravel); }
|
||||||
|
.#{$fa-css-prefix}-signalapp:before { content: fa-content($fa-var-signalapp); }
|
||||||
|
.#{$fa-css-prefix}-gnupg:before { content: fa-content($fa-var-gnupg); }
|
||||||
|
.#{$fa-css-prefix}-php:before { content: fa-content($fa-var-php); }
|
||||||
|
.#{$fa-css-prefix}-ffmpeg:before { content: fa-content($fa-var-ffmpeg); }
|
||||||
|
.#{$fa-css-prefix}-joplin:before { content: fa-content($fa-var-joplin); }
|
||||||
|
.#{$fa-css-prefix}-syncthing:before { content: fa-content($fa-var-syncthing); }
|
||||||
|
.#{$fa-css-prefix}-inkscape:before { content: fa-content($fa-var-inkscape); }
|
||||||
|
.#{$fa-css-prefix}-matrix-org:before { content: fa-content($fa-var-matrix-org); }
|
||||||
|
.#{$fa-css-prefix}-pixelfed:before { content: fa-content($fa-var-pixelfed); }
|
||||||
|
.#{$fa-css-prefix}-bootstrap:before { content: fa-content($fa-var-bootstrap); }
|
||||||
|
.#{$fa-css-prefix}-dev-to:before { content: fa-content($fa-var-dev-to); }
|
||||||
|
.#{$fa-css-prefix}-hashnode:before { content: fa-content($fa-var-hashnode); }
|
||||||
|
.#{$fa-css-prefix}-jirafeau:before { content: fa-content($fa-var-jirafeau); }
|
||||||
|
.#{$fa-css-prefix}-emby:before { content: fa-content($fa-var-emby); }
|
||||||
|
.#{$fa-css-prefix}-wikidata:before { content: fa-content($fa-var-wikidata); }
|
||||||
|
.#{$fa-css-prefix}-gimp:before { content: fa-content($fa-var-gimp); }
|
||||||
|
.#{$fa-css-prefix}-c:before { content: fa-content($fa-var-c); }
|
||||||
|
.#{$fa-css-prefix}-digitalocean:before { content: fa-content($fa-var-digitalocean); }
|
||||||
|
.#{$fa-css-prefix}-att:before { content: fa-content($fa-var-att); }
|
||||||
|
.#{$fa-css-prefix}-gitea:before { content: fa-content($fa-var-gitea); }
|
||||||
|
.#{$fa-css-prefix}-file-epub:before { content: fa-content($fa-var-file-epub); }
|
||||||
|
.#{$fa-css-prefix}-python:before { content: fa-content($fa-var-python); }
|
||||||
|
.#{$fa-css-prefix}-archlinux:before { content: fa-content($fa-var-archlinux); }
|
||||||
|
.#{$fa-css-prefix}-pleroma:before { content: fa-content($fa-var-pleroma); }
|
||||||
|
.#{$fa-css-prefix}-unsplash:before { content: fa-content($fa-var-unsplash); }
|
||||||
|
.#{$fa-css-prefix}-hackster:before { content: fa-content($fa-var-hackster); }
|
||||||
|
.#{$fa-css-prefix}-spell-check:before { content: fa-content($fa-var-spell-check); }
|
||||||
|
.#{$fa-css-prefix}-moon:before { content: fa-content($fa-var-moon); }
|
||||||
|
.#{$fa-css-prefix}-sun:before { content: fa-content($fa-var-sun); }
|
||||||
|
.#{$fa-css-prefix}-f-droid:before { content: fa-content($fa-var-f-droid); }
|
||||||
|
.#{$fa-css-prefix}-biometric:before { content: fa-content($fa-var-biometric); }
|
||||||
|
.#{$fa-css-prefix}-wire:before { content: fa-content($fa-var-wire); }
|
||||||
|
.#{$fa-css-prefix}-tor-onion:before { content: fa-content($fa-var-tor-onion); }
|
||||||
|
.#{$fa-css-prefix}-volume-mute:before { content: fa-content($fa-var-volume-mute); }
|
||||||
|
.#{$fa-css-prefix}-bell-ringing:before { content: fa-content($fa-var-bell-ringing); }
|
||||||
|
.#{$fa-css-prefix}-bell-ringing-o:before { content: fa-content($fa-var-bell-ringing-o); }
|
||||||
|
.#{$fa-css-prefix}-hal:before { content: fa-content($fa-var-hal); }
|
||||||
|
.#{$fa-css-prefix}-jupyter:before { content: fa-content($fa-var-jupyter); }
|
||||||
|
.#{$fa-css-prefix}-julia:before { content: fa-content($fa-var-julia); }
|
||||||
|
.#{$fa-css-prefix}-classicpress:before { content: fa-content($fa-var-classicpress); }
|
||||||
|
.#{$fa-css-prefix}-classicpress-circle:before { content: fa-content($fa-var-classicpress-circle); }
|
||||||
|
.#{$fa-css-prefix}-open-collective:before { content: fa-content($fa-var-open-collective); }
|
||||||
|
.#{$fa-css-prefix}-orcid:before { content: fa-content($fa-var-orcid); }
|
||||||
|
.#{$fa-css-prefix}-researchgate:before { content: fa-content($fa-var-researchgate); }
|
||||||
|
.#{$fa-css-prefix}-funkwhale:before { content: fa-content($fa-var-funkwhale); }
|
||||||
|
.#{$fa-css-prefix}-askfm:before { content: fa-content($fa-var-askfm); }
|
||||||
|
.#{$fa-css-prefix}-blockstack:before { content: fa-content($fa-var-blockstack); }
|
||||||
|
.#{$fa-css-prefix}-boardgamegeek:before { content: fa-content($fa-var-boardgamegeek); }
|
||||||
|
.#{$fa-css-prefix}-bunny:before { content: fa-content($fa-var-bunny); }
|
||||||
|
.#{$fa-css-prefix}-buymeacoffee:before { content: fa-content($fa-var-buymeacoffee); }
|
||||||
|
.#{$fa-css-prefix}-cc-by:before { content: fa-content($fa-var-cc-by); }
|
||||||
|
.#{$fa-css-prefix}-creative-commons-alt:before,
|
||||||
|
.#{$fa-css-prefix}-cc-cc:before { content: fa-content($fa-var-cc-cc); }
|
||||||
|
.#{$fa-css-prefix}-cc-nc-eu:before { content: fa-content($fa-var-cc-nc-eu); }
|
||||||
|
.#{$fa-css-prefix}-cc-nc-jp:before { content: fa-content($fa-var-cc-nc-jp); }
|
||||||
|
.#{$fa-css-prefix}-cc-nc:before { content: fa-content($fa-var-cc-nc); }
|
||||||
|
.#{$fa-css-prefix}-cc-nd:before { content: fa-content($fa-var-cc-nd); }
|
||||||
|
.#{$fa-css-prefix}-cc-pd:before { content: fa-content($fa-var-cc-pd); }
|
||||||
|
.#{$fa-css-prefix}-cc-remix:before { content: fa-content($fa-var-cc-remix); }
|
||||||
|
.#{$fa-css-prefix}-cc-sa:before { content: fa-content($fa-var-cc-sa); }
|
||||||
|
.#{$fa-css-prefix}-cc-share:before { content: fa-content($fa-var-cc-share); }
|
||||||
|
.#{$fa-css-prefix}-cc-zero:before { content: fa-content($fa-var-cc-zero); }
|
||||||
|
.#{$fa-css-prefix}-conway-hacker:before,
|
||||||
|
.#{$fa-css-prefix}-conway-glider:before { content: fa-content($fa-var-conway-glider); }
|
||||||
|
.#{$fa-css-prefix}-csharp:before { content: fa-content($fa-var-csharp); }
|
||||||
|
.#{$fa-css-prefix}-email-bulk:before { content: fa-content($fa-var-email-bulk); }
|
||||||
|
.#{$fa-css-prefix}-email-bulk-o:before { content: fa-content($fa-var-email-bulk-o); }
|
||||||
|
.#{$fa-css-prefix}-gnu:before { content: fa-content($fa-var-gnu); }
|
||||||
|
.#{$fa-css-prefix}-google-play:before { content: fa-content($fa-var-google-play); }
|
||||||
|
.#{$fa-css-prefix}-heroku:before { content: fa-content($fa-var-heroku); }
|
||||||
|
.#{$fa-css-prefix}-hassio:before,
|
||||||
|
.#{$fa-css-prefix}-home-assistant:before { content: fa-content($fa-var-home-assistant); }
|
||||||
|
.#{$fa-css-prefix}-java:before { content: fa-content($fa-var-java); }
|
||||||
|
.#{$fa-css-prefix}-mariadb:before { content: fa-content($fa-var-mariadb); }
|
||||||
|
.#{$fa-css-prefix}-markdown:before { content: fa-content($fa-var-markdown); }
|
||||||
|
.#{$fa-css-prefix}-mysql:before { content: fa-content($fa-var-mysql); }
|
||||||
|
.#{$fa-css-prefix}-nordcast:before { content: fa-content($fa-var-nordcast); }
|
||||||
|
.#{$fa-css-prefix}-plume:before { content: fa-content($fa-var-plume); }
|
||||||
|
.#{$fa-css-prefix}-postgresql:before { content: fa-content($fa-var-postgresql); }
|
||||||
|
.#{$fa-css-prefix}-sass-alt:before { content: fa-content($fa-var-sass-alt); }
|
||||||
|
.#{$fa-css-prefix}-sass:before { content: fa-content($fa-var-sass); }
|
||||||
|
.#{$fa-css-prefix}-skate:before { content: fa-content($fa-var-skate); }
|
||||||
|
.#{$fa-css-prefix}-sketchfab:before { content: fa-content($fa-var-sketchfab); }
|
||||||
|
.#{$fa-css-prefix}-tex:before { content: fa-content($fa-var-tex); }
|
||||||
|
.#{$fa-css-prefix}-textpattern:before { content: fa-content($fa-var-textpattern); }
|
||||||
|
.#{$fa-css-prefix}-unity:before { content: fa-content($fa-var-unity); }
|
||||||
13
assets/scss/fork-awesome/_larger.scss
Normal file
13
assets/scss/fork-awesome/_larger.scss
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
// Icon Sizes
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
/* makes the font 33% larger relative to the icon container */
|
||||||
|
.#{$fa-css-prefix}-lg {
|
||||||
|
font-size: (4em / 3);
|
||||||
|
line-height: (3em / 4);
|
||||||
|
vertical-align: -15%;
|
||||||
|
}
|
||||||
|
.#{$fa-css-prefix}-2x { font-size: 2em; }
|
||||||
|
.#{$fa-css-prefix}-3x { font-size: 3em; }
|
||||||
|
.#{$fa-css-prefix}-4x { font-size: 4em; }
|
||||||
|
.#{$fa-css-prefix}-5x { font-size: 5em; }
|
||||||
19
assets/scss/fork-awesome/_list.scss
Normal file
19
assets/scss/fork-awesome/_list.scss
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
// List Icons
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-ul {
|
||||||
|
padding-left: 0;
|
||||||
|
margin-left: $fa-li-width;
|
||||||
|
list-style-type: none;
|
||||||
|
> li { position: relative; }
|
||||||
|
}
|
||||||
|
.#{$fa-css-prefix}-li {
|
||||||
|
position: absolute;
|
||||||
|
left: -$fa-li-width;
|
||||||
|
width: $fa-li-width;
|
||||||
|
top: (2em / 14);
|
||||||
|
text-align: center;
|
||||||
|
&.#{$fa-css-prefix}-lg {
|
||||||
|
left: -$fa-li-width + (4em / 14);
|
||||||
|
}
|
||||||
|
}
|
||||||
60
assets/scss/fork-awesome/_mixins.scss
Normal file
60
assets/scss/fork-awesome/_mixins.scss
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
// Mixins
|
||||||
|
// --------------------------
|
||||||
|
|
||||||
|
@mixin fa-icon() {
|
||||||
|
display: inline-block;
|
||||||
|
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} #{$fa-font-family}; // shortening font declaration
|
||||||
|
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||||
|
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
|
||||||
|
-webkit-transform: rotate($degrees);
|
||||||
|
-ms-transform: rotate($degrees);
|
||||||
|
transform: rotate($degrees);
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
|
||||||
|
-webkit-transform: scale($horiz, $vert);
|
||||||
|
-ms-transform: scale($horiz, $vert);
|
||||||
|
transform: scale($horiz, $vert);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Only display content to screen readers. A la Bootstrap 4.
|
||||||
|
//
|
||||||
|
// See: http://a11yproject.com/posts/how-to-hide-content/
|
||||||
|
|
||||||
|
@mixin sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0,0,0,0);
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||||
|
//
|
||||||
|
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||||
|
//
|
||||||
|
// Credit: HTML5 Boilerplate
|
||||||
|
|
||||||
|
@mixin sr-only-focusable {
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
position: static;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
margin: 0;
|
||||||
|
overflow: visible;
|
||||||
|
clip: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
16
assets/scss/fork-awesome/_path.scss
Normal file
16
assets/scss/fork-awesome/_path.scss
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
/* FONT PATH
|
||||||
|
* -------------------------- */
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: '#{$fa-font-family}';
|
||||||
|
src: url('#{$fa-font-path}/forkawesome-webfont.eot?v=#{$fa-version}');
|
||||||
|
src: url('#{$fa-font-path}/forkawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
|
||||||
|
url('#{$fa-font-path}/forkawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
|
||||||
|
url('#{$fa-font-path}/forkawesome-webfont.woff?v=#{$fa-version}') format('woff'),
|
||||||
|
url('#{$fa-font-path}/forkawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
|
||||||
|
url('#{$fa-font-path}/forkawesome-webfont.svg?v=#{$fa-version}#forkawesomeregular') format('svg');
|
||||||
|
// src: url('#{$fa-font-path}/ForkAwesome.otf') format('opentype'); // used when developing fonts
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: block;
|
||||||
|
}
|
||||||
20
assets/scss/fork-awesome/_rotated-flipped.scss
Normal file
20
assets/scss/fork-awesome/_rotated-flipped.scss
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
// Rotated & Flipped Icons
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
||||||
|
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
||||||
|
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
||||||
|
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
||||||
|
|
||||||
|
// Hook for IE8-9
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
:root .#{$fa-css-prefix}-rotate-90,
|
||||||
|
:root .#{$fa-css-prefix}-rotate-180,
|
||||||
|
:root .#{$fa-css-prefix}-rotate-270,
|
||||||
|
:root .#{$fa-css-prefix}-flip-horizontal,
|
||||||
|
:root .#{$fa-css-prefix}-flip-vertical {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
5
assets/scss/fork-awesome/_screen-reader.scss
Normal file
5
assets/scss/fork-awesome/_screen-reader.scss
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
// Screen Readers
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.sr-only { @include sr-only(); }
|
||||||
|
.sr-only-focusable { @include sr-only-focusable(); }
|
||||||
20
assets/scss/fork-awesome/_stacked.scss
Normal file
20
assets/scss/fork-awesome/_stacked.scss
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
// Stacked Icons
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
.#{$fa-css-prefix}-stack {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 2em;
|
||||||
|
height: 2em;
|
||||||
|
line-height: 2em;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
|
||||||
|
.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
|
||||||
|
.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
|
||||||
945
assets/scss/fork-awesome/_variables.scss
Normal file
945
assets/scss/fork-awesome/_variables.scss
Normal file
@@ -0,0 +1,945 @@
|
|||||||
|
// Variables
|
||||||
|
// --------------------------
|
||||||
|
|
||||||
|
$fa-font-path: "../fonts" !default;
|
||||||
|
$fa-font-size-base: 14px !default;
|
||||||
|
$fa-line-height-base: 1 !default;
|
||||||
|
$fa-css-prefix: "fa" !default;
|
||||||
|
$fa-font-family: "ForkAwesome" !default;
|
||||||
|
$fa-version: "1.2.0" !default;
|
||||||
|
$fa-border-color: #eee !default;
|
||||||
|
$fa-inverse: #fff !default;
|
||||||
|
$fa-li-width: (30em / 14) !default;
|
||||||
|
|
||||||
|
$fa-var-500px: \f26e;
|
||||||
|
$fa-var-activitypub: \f2f2;
|
||||||
|
$fa-var-address-book: \f2b9;
|
||||||
|
$fa-var-address-book-o: \f2ba;
|
||||||
|
$fa-var-address-card: \f2bb;
|
||||||
|
$fa-var-address-card-o: \f2bc;
|
||||||
|
$fa-var-adjust: \f042;
|
||||||
|
$fa-var-adn: \f170;
|
||||||
|
$fa-var-align-center: \f037;
|
||||||
|
$fa-var-align-justify: \f039;
|
||||||
|
$fa-var-align-left: \f036;
|
||||||
|
$fa-var-align-right: \f038;
|
||||||
|
$fa-var-amazon: \f270;
|
||||||
|
$fa-var-ambulance: \f0f9;
|
||||||
|
$fa-var-american-sign-language-interpreting: \f2a3;
|
||||||
|
$fa-var-anchor: \f13d;
|
||||||
|
$fa-var-android: \f17b;
|
||||||
|
$fa-var-angellist: \f209;
|
||||||
|
$fa-var-angle-double-down: \f103;
|
||||||
|
$fa-var-angle-double-left: \f100;
|
||||||
|
$fa-var-angle-double-right: \f101;
|
||||||
|
$fa-var-angle-double-up: \f102;
|
||||||
|
$fa-var-angle-down: \f107;
|
||||||
|
$fa-var-angle-left: \f104;
|
||||||
|
$fa-var-angle-right: \f105;
|
||||||
|
$fa-var-angle-up: \f106;
|
||||||
|
$fa-var-apple: \f179;
|
||||||
|
$fa-var-archive: \f187;
|
||||||
|
$fa-var-archive-org: \f2fc;
|
||||||
|
$fa-var-archlinux: \f323;
|
||||||
|
$fa-var-area-chart: \f1fe;
|
||||||
|
$fa-var-arrow-circle-down: \f0ab;
|
||||||
|
$fa-var-arrow-circle-left: \f0a8;
|
||||||
|
$fa-var-arrow-circle-o-down: \f01a;
|
||||||
|
$fa-var-arrow-circle-o-left: \f190;
|
||||||
|
$fa-var-arrow-circle-o-right: \f18e;
|
||||||
|
$fa-var-arrow-circle-o-up: \f01b;
|
||||||
|
$fa-var-arrow-circle-right: \f0a9;
|
||||||
|
$fa-var-arrow-circle-up: \f0aa;
|
||||||
|
$fa-var-arrow-down: \f063;
|
||||||
|
$fa-var-arrow-left: \f060;
|
||||||
|
$fa-var-arrow-right: \f061;
|
||||||
|
$fa-var-arrow-up: \f062;
|
||||||
|
$fa-var-arrows: \f047;
|
||||||
|
$fa-var-arrows-alt: \f0b2;
|
||||||
|
$fa-var-arrows-h: \f07e;
|
||||||
|
$fa-var-arrows-v: \f07d;
|
||||||
|
$fa-var-artstation: \f2ed;
|
||||||
|
$fa-var-askfm: \f33a;
|
||||||
|
$fa-var-asl-interpreting: \f2a3;
|
||||||
|
$fa-var-assistive-listening-systems: \f2a2;
|
||||||
|
$fa-var-asterisk: \f069;
|
||||||
|
$fa-var-at: \f1fa;
|
||||||
|
$fa-var-att: \f31e;
|
||||||
|
$fa-var-audio-description: \f29e;
|
||||||
|
$fa-var-automobile: \f1b9;
|
||||||
|
$fa-var-backward: \f04a;
|
||||||
|
$fa-var-balance-scale: \f24e;
|
||||||
|
$fa-var-ban: \f05e;
|
||||||
|
$fa-var-bandcamp: \f2d5;
|
||||||
|
$fa-var-bank: \f19c;
|
||||||
|
$fa-var-bar-chart: \f080;
|
||||||
|
$fa-var-bar-chart-o: \f080;
|
||||||
|
$fa-var-barcode: \f02a;
|
||||||
|
$fa-var-bars: \f0c9;
|
||||||
|
$fa-var-bath: \f2cd;
|
||||||
|
$fa-var-bathtub: \f2cd;
|
||||||
|
$fa-var-battery: \f240;
|
||||||
|
$fa-var-battery-0: \f244;
|
||||||
|
$fa-var-battery-1: \f243;
|
||||||
|
$fa-var-battery-2: \f242;
|
||||||
|
$fa-var-battery-3: \f241;
|
||||||
|
$fa-var-battery-4: \f240;
|
||||||
|
$fa-var-battery-empty: \f244;
|
||||||
|
$fa-var-battery-full: \f240;
|
||||||
|
$fa-var-battery-half: \f242;
|
||||||
|
$fa-var-battery-quarter: \f243;
|
||||||
|
$fa-var-battery-three-quarters: \f241;
|
||||||
|
$fa-var-bed: \f236;
|
||||||
|
$fa-var-beer: \f0fc;
|
||||||
|
$fa-var-behance: \f1b4;
|
||||||
|
$fa-var-behance-square: \f1b5;
|
||||||
|
$fa-var-bell: \f0a2;
|
||||||
|
$fa-var-bell-o: \f0f3;
|
||||||
|
$fa-var-bell-ringing: \f32d;
|
||||||
|
$fa-var-bell-ringing-o: \f330;
|
||||||
|
$fa-var-bell-slash: \f1f6;
|
||||||
|
$fa-var-bell-slash-o: \f1f7;
|
||||||
|
$fa-var-bicycle: \f206;
|
||||||
|
$fa-var-binoculars: \f1e5;
|
||||||
|
$fa-var-biometric: \f32b;
|
||||||
|
$fa-var-birthday-cake: \f1fd;
|
||||||
|
$fa-var-bitbucket: \f171;
|
||||||
|
$fa-var-bitbucket-square: \f172;
|
||||||
|
$fa-var-bitcoin: \f15a;
|
||||||
|
$fa-var-black-tie: \f27e;
|
||||||
|
$fa-var-blind: \f29d;
|
||||||
|
$fa-var-blockstack: \f33b;
|
||||||
|
$fa-var-bluetooth: \f293;
|
||||||
|
$fa-var-bluetooth-b: \f294;
|
||||||
|
$fa-var-boardgamegeek: \f33c;
|
||||||
|
$fa-var-bold: \f032;
|
||||||
|
$fa-var-bolt: \f0e7;
|
||||||
|
$fa-var-bomb: \f1e2;
|
||||||
|
$fa-var-book: \f02d;
|
||||||
|
$fa-var-bookmark: \f02e;
|
||||||
|
$fa-var-bookmark-o: \f097;
|
||||||
|
$fa-var-bootstrap: \f315;
|
||||||
|
$fa-var-braille: \f2a1;
|
||||||
|
$fa-var-briefcase: \f0b1;
|
||||||
|
$fa-var-btc: \f15a;
|
||||||
|
$fa-var-bug: \f188;
|
||||||
|
$fa-var-building: \f1ad;
|
||||||
|
$fa-var-building-o: \f0f7;
|
||||||
|
$fa-var-bullhorn: \f0a1;
|
||||||
|
$fa-var-bullseye: \f140;
|
||||||
|
$fa-var-bunny: \f35f;
|
||||||
|
$fa-var-bus: \f207;
|
||||||
|
$fa-var-buymeacoffee: \f33d;
|
||||||
|
$fa-var-buysellads: \f20d;
|
||||||
|
$fa-var-c: \f31c;
|
||||||
|
$fa-var-cab: \f1ba;
|
||||||
|
$fa-var-calculator: \f1ec;
|
||||||
|
$fa-var-calendar: \f073;
|
||||||
|
$fa-var-calendar-check-o: \f274;
|
||||||
|
$fa-var-calendar-minus-o: \f272;
|
||||||
|
$fa-var-calendar-o: \f133;
|
||||||
|
$fa-var-calendar-plus-o: \f271;
|
||||||
|
$fa-var-calendar-times-o: \f273;
|
||||||
|
$fa-var-camera: \f030;
|
||||||
|
$fa-var-camera-retro: \f083;
|
||||||
|
$fa-var-car: \f1b9;
|
||||||
|
$fa-var-caret-down: \f0d7;
|
||||||
|
$fa-var-caret-left: \f0d9;
|
||||||
|
$fa-var-caret-right: \f0da;
|
||||||
|
$fa-var-caret-square-o-down: \f150;
|
||||||
|
$fa-var-caret-square-o-left: \f191;
|
||||||
|
$fa-var-caret-square-o-right: \f152;
|
||||||
|
$fa-var-caret-square-o-up: \f151;
|
||||||
|
$fa-var-caret-up: \f0d8;
|
||||||
|
$fa-var-cart-arrow-down: \f218;
|
||||||
|
$fa-var-cart-plus: \f217;
|
||||||
|
$fa-var-cc: \f20a;
|
||||||
|
$fa-var-cc-amex: \f1f3;
|
||||||
|
$fa-var-cc-by: \f33e;
|
||||||
|
$fa-var-cc-cc: \f33f;
|
||||||
|
$fa-var-cc-diners-club: \f24c;
|
||||||
|
$fa-var-cc-discover: \f1f2;
|
||||||
|
$fa-var-cc-jcb: \f24b;
|
||||||
|
$fa-var-cc-mastercard: \f1f1;
|
||||||
|
$fa-var-cc-nc: \f340;
|
||||||
|
$fa-var-cc-nc-eu: \f341;
|
||||||
|
$fa-var-cc-nc-jp: \f342;
|
||||||
|
$fa-var-cc-nd: \f343;
|
||||||
|
$fa-var-cc-paypal: \f1f4;
|
||||||
|
$fa-var-cc-pd: \f344;
|
||||||
|
$fa-var-cc-remix: \f345;
|
||||||
|
$fa-var-cc-sa: \f346;
|
||||||
|
$fa-var-cc-share: \f347;
|
||||||
|
$fa-var-cc-stripe: \f1f5;
|
||||||
|
$fa-var-cc-visa: \f1f0;
|
||||||
|
$fa-var-cc-zero: \f348;
|
||||||
|
$fa-var-certificate: \f0a3;
|
||||||
|
$fa-var-chain: \f0c1;
|
||||||
|
$fa-var-chain-broken: \f127;
|
||||||
|
$fa-var-check: \f00c;
|
||||||
|
$fa-var-check-circle: \f058;
|
||||||
|
$fa-var-check-circle-o: \f05d;
|
||||||
|
$fa-var-check-square: \f14a;
|
||||||
|
$fa-var-check-square-o: \f046;
|
||||||
|
$fa-var-chevron-circle-down: \f13a;
|
||||||
|
$fa-var-chevron-circle-left: \f137;
|
||||||
|
$fa-var-chevron-circle-right: \f138;
|
||||||
|
$fa-var-chevron-circle-up: \f139;
|
||||||
|
$fa-var-chevron-down: \f078;
|
||||||
|
$fa-var-chevron-left: \f053;
|
||||||
|
$fa-var-chevron-right: \f054;
|
||||||
|
$fa-var-chevron-up: \f077;
|
||||||
|
$fa-var-child: \f1ae;
|
||||||
|
$fa-var-chrome: \f268;
|
||||||
|
$fa-var-circle: \f111;
|
||||||
|
$fa-var-circle-o: \f10c;
|
||||||
|
$fa-var-circle-o-notch: \f1ce;
|
||||||
|
$fa-var-circle-thin: \f1db;
|
||||||
|
$fa-var-classicpress: \f331;
|
||||||
|
$fa-var-classicpress-circle: \f332;
|
||||||
|
$fa-var-clipboard: \f0ea;
|
||||||
|
$fa-var-clock-o: \f017;
|
||||||
|
$fa-var-clone: \f24d;
|
||||||
|
$fa-var-close: \f00d;
|
||||||
|
$fa-var-closed-captioning: \f20a;
|
||||||
|
$fa-var-cloud: \f0c2;
|
||||||
|
$fa-var-cloud-download: \f0ed;
|
||||||
|
$fa-var-cloud-upload: \f0ee;
|
||||||
|
$fa-var-cny: \f157;
|
||||||
|
$fa-var-code: \f121;
|
||||||
|
$fa-var-code-fork: \f126;
|
||||||
|
$fa-var-codepen: \f1cb;
|
||||||
|
$fa-var-codiepie: \f284;
|
||||||
|
$fa-var-coffee: \f0f4;
|
||||||
|
$fa-var-cog: \f013;
|
||||||
|
$fa-var-cogs: \f085;
|
||||||
|
$fa-var-columns: \f0db;
|
||||||
|
$fa-var-comment: \f075;
|
||||||
|
$fa-var-comment-o: \f0e5;
|
||||||
|
$fa-var-commenting: \f27a;
|
||||||
|
$fa-var-commenting-o: \f27b;
|
||||||
|
$fa-var-comments: \f086;
|
||||||
|
$fa-var-comments-o: \f0e6;
|
||||||
|
$fa-var-community: \f0c0;
|
||||||
|
$fa-var-compass: \f14e;
|
||||||
|
$fa-var-compress: \f066;
|
||||||
|
$fa-var-connectdevelop: \f20e;
|
||||||
|
$fa-var-contao: \f26d;
|
||||||
|
$fa-var-conway-glider: \f349;
|
||||||
|
$fa-var-conway-hacker: \f349;
|
||||||
|
$fa-var-copy: \f0c5;
|
||||||
|
$fa-var-copyright: \f1f9;
|
||||||
|
$fa-var-creative-commons: \f25e;
|
||||||
|
$fa-var-creative-commons-alt: \f33f;
|
||||||
|
$fa-var-credit-card: \f09d;
|
||||||
|
$fa-var-credit-card-alt: \f283;
|
||||||
|
$fa-var-crop: \f125;
|
||||||
|
$fa-var-crosshairs: \f05b;
|
||||||
|
$fa-var-csharp: \f34a;
|
||||||
|
$fa-var-css3: \f13c;
|
||||||
|
$fa-var-cube: \f1b2;
|
||||||
|
$fa-var-cubes: \f1b3;
|
||||||
|
$fa-var-cut: \f0c4;
|
||||||
|
$fa-var-cut-key: \f2f7;
|
||||||
|
$fa-var-cutlery: \f0f5;
|
||||||
|
$fa-var-dashboard: \f0e4;
|
||||||
|
$fa-var-dashcube: \f210;
|
||||||
|
$fa-var-database: \f1c0;
|
||||||
|
$fa-var-deaf: \f2a4;
|
||||||
|
$fa-var-deafness: \f2a4;
|
||||||
|
$fa-var-debian: \f2ff;
|
||||||
|
$fa-var-dedent: \f03b;
|
||||||
|
$fa-var-delicious: \f1a5;
|
||||||
|
$fa-var-desktop: \f108;
|
||||||
|
$fa-var-dev-to: \f316;
|
||||||
|
$fa-var-deviantart: \f1bd;
|
||||||
|
$fa-var-diamond: \f219;
|
||||||
|
$fa-var-diaspora: \f2e5;
|
||||||
|
$fa-var-digg: \f1a6;
|
||||||
|
$fa-var-digitalocean: \f31d;
|
||||||
|
$fa-var-discord: \f2ee;
|
||||||
|
$fa-var-discord-alt: \f2ef;
|
||||||
|
$fa-var-dogmazic: \f303;
|
||||||
|
$fa-var-dollar: \f155;
|
||||||
|
$fa-var-dot-circle-o: \f192;
|
||||||
|
$fa-var-download: \f019;
|
||||||
|
$fa-var-dribbble: \f17d;
|
||||||
|
$fa-var-drivers-license: \f2c2;
|
||||||
|
$fa-var-drivers-license-o: \f2c3;
|
||||||
|
$fa-var-dropbox: \f16b;
|
||||||
|
$fa-var-drupal: \f1a9;
|
||||||
|
$fa-var-edge: \f282;
|
||||||
|
$fa-var-edit: \f044;
|
||||||
|
$fa-var-eercast: \f2da;
|
||||||
|
$fa-var-eject: \f052;
|
||||||
|
$fa-var-ellipsis-h: \f141;
|
||||||
|
$fa-var-ellipsis-v: \f142;
|
||||||
|
$fa-var-email-bulk: \f34b;
|
||||||
|
$fa-var-email-bulk-o: \f34c;
|
||||||
|
$fa-var-emby: \f319;
|
||||||
|
$fa-var-empire: \f1d1;
|
||||||
|
$fa-var-envelope: \f0e0;
|
||||||
|
$fa-var-envelope-o: \f003;
|
||||||
|
$fa-var-envelope-open: \f2b6;
|
||||||
|
$fa-var-envelope-open-o: \f2b7;
|
||||||
|
$fa-var-envelope-square: \f199;
|
||||||
|
$fa-var-envira: \f299;
|
||||||
|
$fa-var-eraser: \f12d;
|
||||||
|
$fa-var-ethereum: \f2f3;
|
||||||
|
$fa-var-etsy: \f2d7;
|
||||||
|
$fa-var-eur: \f153;
|
||||||
|
$fa-var-euro: \f153;
|
||||||
|
$fa-var-exchange: \f0ec;
|
||||||
|
$fa-var-exclamation: \f12a;
|
||||||
|
$fa-var-exclamation-circle: \f06a;
|
||||||
|
$fa-var-exclamation-triangle: \f071;
|
||||||
|
$fa-var-expand: \f065;
|
||||||
|
$fa-var-expeditedssl: \f23e;
|
||||||
|
$fa-var-external-link: \f08e;
|
||||||
|
$fa-var-external-link-square: \f14c;
|
||||||
|
$fa-var-eye: \f06e;
|
||||||
|
$fa-var-eye-slash: \f070;
|
||||||
|
$fa-var-eyedropper: \f1fb;
|
||||||
|
$fa-var-f-droid: \f32a;
|
||||||
|
$fa-var-fa: \f2b4;
|
||||||
|
$fa-var-facebook: \f09a;
|
||||||
|
$fa-var-facebook-f: \f09a;
|
||||||
|
$fa-var-facebook-messenger: \f2fe;
|
||||||
|
$fa-var-facebook-official: \f230;
|
||||||
|
$fa-var-facebook-square: \f082;
|
||||||
|
$fa-var-fast-backward: \f049;
|
||||||
|
$fa-var-fast-forward: \f050;
|
||||||
|
$fa-var-fax: \f1ac;
|
||||||
|
$fa-var-feed: \f09e;
|
||||||
|
$fa-var-female: \f182;
|
||||||
|
$fa-var-ffmpeg: \f30f;
|
||||||
|
$fa-var-fighter-jet: \f0fb;
|
||||||
|
$fa-var-file: \f15b;
|
||||||
|
$fa-var-file-archive-o: \f1c6;
|
||||||
|
$fa-var-file-audio-o: \f1c7;
|
||||||
|
$fa-var-file-code-o: \f1c9;
|
||||||
|
$fa-var-file-epub: \f321;
|
||||||
|
$fa-var-file-excel-o: \f1c3;
|
||||||
|
$fa-var-file-image-o: \f1c5;
|
||||||
|
$fa-var-file-movie-o: \f1c8;
|
||||||
|
$fa-var-file-o: \f016;
|
||||||
|
$fa-var-file-pdf-o: \f1c1;
|
||||||
|
$fa-var-file-photo-o: \f1c5;
|
||||||
|
$fa-var-file-picture-o: \f1c5;
|
||||||
|
$fa-var-file-powerpoint-o: \f1c4;
|
||||||
|
$fa-var-file-sound-o: \f1c7;
|
||||||
|
$fa-var-file-text: \f15c;
|
||||||
|
$fa-var-file-text-o: \f0f6;
|
||||||
|
$fa-var-file-video-o: \f1c8;
|
||||||
|
$fa-var-file-word-o: \f1c2;
|
||||||
|
$fa-var-file-zip-o: \f1c6;
|
||||||
|
$fa-var-files-o: \f0c5;
|
||||||
|
$fa-var-film: \f008;
|
||||||
|
$fa-var-filter: \f0b0;
|
||||||
|
$fa-var-fire: \f06d;
|
||||||
|
$fa-var-fire-extinguisher: \f134;
|
||||||
|
$fa-var-firefox: \f269;
|
||||||
|
$fa-var-first-order: \f2b0;
|
||||||
|
$fa-var-flag: \f024;
|
||||||
|
$fa-var-flag-checkered: \f11e;
|
||||||
|
$fa-var-flag-o: \f11d;
|
||||||
|
$fa-var-flash: \f0e7;
|
||||||
|
$fa-var-flask: \f0c3;
|
||||||
|
$fa-var-flickr: \f16e;
|
||||||
|
$fa-var-floppy-o: \f0c7;
|
||||||
|
$fa-var-folder: \f07b;
|
||||||
|
$fa-var-folder-o: \f114;
|
||||||
|
$fa-var-folder-open: \f07c;
|
||||||
|
$fa-var-folder-open-o: \f115;
|
||||||
|
$fa-var-font: \f031;
|
||||||
|
$fa-var-font-awesome: \f2b4;
|
||||||
|
$fa-var-fonticons: \f280;
|
||||||
|
$fa-var-fork-awesome: \f2e3;
|
||||||
|
$fa-var-fork-circle: \f2e3;
|
||||||
|
$fa-var-fort-awesome: \f286;
|
||||||
|
$fa-var-forumbee: \f211;
|
||||||
|
$fa-var-forward: \f04e;
|
||||||
|
$fa-var-foursquare: \f180;
|
||||||
|
$fa-var-free-code-camp: \f2c5;
|
||||||
|
$fa-var-freedombox: \f2fd;
|
||||||
|
$fa-var-friendica: \f2e6;
|
||||||
|
$fa-var-frown-o: \f119;
|
||||||
|
$fa-var-funkwhale: \f339;
|
||||||
|
$fa-var-futbol-o: \f1e3;
|
||||||
|
$fa-var-gamepad: \f11b;
|
||||||
|
$fa-var-gavel: \f0e3;
|
||||||
|
$fa-var-gbp: \f154;
|
||||||
|
$fa-var-ge: \f1d1;
|
||||||
|
$fa-var-gear: \f013;
|
||||||
|
$fa-var-gears: \f085;
|
||||||
|
$fa-var-gem: \f219;
|
||||||
|
$fa-var-genderless: \f22d;
|
||||||
|
$fa-var-get-pocket: \f265;
|
||||||
|
$fa-var-gg: \f260;
|
||||||
|
$fa-var-gg-circle: \f261;
|
||||||
|
$fa-var-gift: \f06b;
|
||||||
|
$fa-var-gimp: \f31b;
|
||||||
|
$fa-var-git: \f1d3;
|
||||||
|
$fa-var-git-square: \f1d2;
|
||||||
|
$fa-var-gitea: \f31f;
|
||||||
|
$fa-var-github: \f09b;
|
||||||
|
$fa-var-github-alt: \f113;
|
||||||
|
$fa-var-github-square: \f092;
|
||||||
|
$fa-var-gitlab: \f296;
|
||||||
|
$fa-var-gittip: \f184;
|
||||||
|
$fa-var-glass: \f000;
|
||||||
|
$fa-var-glide: \f2a5;
|
||||||
|
$fa-var-glide-g: \f2a6;
|
||||||
|
$fa-var-globe: \f0ac;
|
||||||
|
$fa-var-globe-e: \f304;
|
||||||
|
$fa-var-globe-w: \f305;
|
||||||
|
$fa-var-gnu: \f34d;
|
||||||
|
$fa-var-gnu-social: \f2e7;
|
||||||
|
$fa-var-gnupg: \f30d;
|
||||||
|
$fa-var-google: \f1a0;
|
||||||
|
$fa-var-google-play: \f34e;
|
||||||
|
$fa-var-google-plus: \f0d5;
|
||||||
|
$fa-var-google-plus-circle: \f2b3;
|
||||||
|
$fa-var-google-plus-g: \f0d5;
|
||||||
|
$fa-var-google-plus-official: \f2b3;
|
||||||
|
$fa-var-google-plus-square: \f0d4;
|
||||||
|
$fa-var-google-wallet: \f1ee;
|
||||||
|
$fa-var-graduation-cap: \f19d;
|
||||||
|
$fa-var-gratipay: \f184;
|
||||||
|
$fa-var-grav: \f2d6;
|
||||||
|
$fa-var-group: \f0c0;
|
||||||
|
$fa-var-h-square: \f0fd;
|
||||||
|
$fa-var-hackaday: \f30a;
|
||||||
|
$fa-var-hacker-news: \f1d4;
|
||||||
|
$fa-var-hackster: \f326;
|
||||||
|
$fa-var-hal: \f333;
|
||||||
|
$fa-var-hand-grab-o: \f255;
|
||||||
|
$fa-var-hand-lizard-o: \f258;
|
||||||
|
$fa-var-hand-o-down: \f0a7;
|
||||||
|
$fa-var-hand-o-left: \f0a5;
|
||||||
|
$fa-var-hand-o-right: \f0a4;
|
||||||
|
$fa-var-hand-o-up: \f0a6;
|
||||||
|
$fa-var-hand-paper-o: \f256;
|
||||||
|
$fa-var-hand-peace-o: \f25b;
|
||||||
|
$fa-var-hand-pointer-o: \f25a;
|
||||||
|
$fa-var-hand-rock-o: \f255;
|
||||||
|
$fa-var-hand-scissors-o: \f257;
|
||||||
|
$fa-var-hand-spock-o: \f259;
|
||||||
|
$fa-var-hand-stop-o: \f256;
|
||||||
|
$fa-var-handshake-o: \f2b5;
|
||||||
|
$fa-var-hard-of-hearing: \f2a4;
|
||||||
|
$fa-var-hashnode: \f317;
|
||||||
|
$fa-var-hashtag: \f292;
|
||||||
|
$fa-var-hassio: \f350;
|
||||||
|
$fa-var-hdd-o: \f0a0;
|
||||||
|
$fa-var-header: \f1dc;
|
||||||
|
$fa-var-heading: \f1dc;
|
||||||
|
$fa-var-headphones: \f025;
|
||||||
|
$fa-var-heart: \f004;
|
||||||
|
$fa-var-heart-o: \f08a;
|
||||||
|
$fa-var-heartbeat: \f21e;
|
||||||
|
$fa-var-heroku: \f34f;
|
||||||
|
$fa-var-history: \f1da;
|
||||||
|
$fa-var-home: \f015;
|
||||||
|
$fa-var-home-assistant: \f350;
|
||||||
|
$fa-var-hospital-o: \f0f8;
|
||||||
|
$fa-var-hotel: \f236;
|
||||||
|
$fa-var-hourglass: \f254;
|
||||||
|
$fa-var-hourglass-1: \f251;
|
||||||
|
$fa-var-hourglass-2: \f252;
|
||||||
|
$fa-var-hourglass-3: \f253;
|
||||||
|
$fa-var-hourglass-end: \f253;
|
||||||
|
$fa-var-hourglass-half: \f252;
|
||||||
|
$fa-var-hourglass-o: \f250;
|
||||||
|
$fa-var-hourglass-start: \f251;
|
||||||
|
$fa-var-houzz: \f27c;
|
||||||
|
$fa-var-html5: \f13b;
|
||||||
|
$fa-var-hubzilla: \f2eb;
|
||||||
|
$fa-var-i-cursor: \f246;
|
||||||
|
$fa-var-id-badge: \f2c1;
|
||||||
|
$fa-var-id-card: \f2c2;
|
||||||
|
$fa-var-id-card-o: \f2c3;
|
||||||
|
$fa-var-ils: \f20b;
|
||||||
|
$fa-var-image: \f03e;
|
||||||
|
$fa-var-imdb: \f2d8;
|
||||||
|
$fa-var-inbox: \f01c;
|
||||||
|
$fa-var-indent: \f03c;
|
||||||
|
$fa-var-industry: \f275;
|
||||||
|
$fa-var-info: \f129;
|
||||||
|
$fa-var-info-circle: \f05a;
|
||||||
|
$fa-var-inkscape: \f312;
|
||||||
|
$fa-var-inr: \f156;
|
||||||
|
$fa-var-instagram: \f16d;
|
||||||
|
$fa-var-institution: \f19c;
|
||||||
|
$fa-var-internet-explorer: \f26b;
|
||||||
|
$fa-var-intersex: \f224;
|
||||||
|
$fa-var-ioxhost: \f208;
|
||||||
|
$fa-var-italic: \f033;
|
||||||
|
$fa-var-java: \f351;
|
||||||
|
$fa-var-jirafeau: \f318;
|
||||||
|
$fa-var-joomla: \f1aa;
|
||||||
|
$fa-var-joplin: \f310;
|
||||||
|
$fa-var-jpy: \f157;
|
||||||
|
$fa-var-jsfiddle: \f1cc;
|
||||||
|
$fa-var-julia: \f334;
|
||||||
|
$fa-var-jupyter: \f335;
|
||||||
|
$fa-var-key: \f084;
|
||||||
|
$fa-var-key-modern: \f2f7;
|
||||||
|
$fa-var-keybase: \f2f4;
|
||||||
|
$fa-var-keyboard-o: \f11c;
|
||||||
|
$fa-var-krw: \f159;
|
||||||
|
$fa-var-language: \f1ab;
|
||||||
|
$fa-var-laptop: \f109;
|
||||||
|
$fa-var-laravel: \f30b;
|
||||||
|
$fa-var-lastfm: \f202;
|
||||||
|
$fa-var-lastfm-square: \f203;
|
||||||
|
$fa-var-leaf: \f06c;
|
||||||
|
$fa-var-leanpub: \f212;
|
||||||
|
$fa-var-legal: \f0e3;
|
||||||
|
$fa-var-lemon-o: \f094;
|
||||||
|
$fa-var-level-down: \f149;
|
||||||
|
$fa-var-level-up: \f148;
|
||||||
|
$fa-var-liberapay: \f2e9;
|
||||||
|
$fa-var-liberapay-square: \f2e8;
|
||||||
|
$fa-var-life-bouy: \f1cd;
|
||||||
|
$fa-var-life-buoy: \f1cd;
|
||||||
|
$fa-var-life-ring: \f1cd;
|
||||||
|
$fa-var-life-saver: \f1cd;
|
||||||
|
$fa-var-lightbulb-o: \f0eb;
|
||||||
|
$fa-var-line-chart: \f201;
|
||||||
|
$fa-var-link: \f0c1;
|
||||||
|
$fa-var-linkedin: \f0e1;
|
||||||
|
$fa-var-linkedin-square: \f08c;
|
||||||
|
$fa-var-linode: \f2b8;
|
||||||
|
$fa-var-linux: \f17c;
|
||||||
|
$fa-var-list: \f03a;
|
||||||
|
$fa-var-list-alt: \f022;
|
||||||
|
$fa-var-list-ol: \f0cb;
|
||||||
|
$fa-var-list-ul: \f0ca;
|
||||||
|
$fa-var-location-arrow: \f124;
|
||||||
|
$fa-var-lock: \f023;
|
||||||
|
$fa-var-long-arrow-down: \f175;
|
||||||
|
$fa-var-long-arrow-left: \f177;
|
||||||
|
$fa-var-long-arrow-right: \f178;
|
||||||
|
$fa-var-long-arrow-up: \f176;
|
||||||
|
$fa-var-low-vision: \f2a8;
|
||||||
|
$fa-var-magic: \f0d0;
|
||||||
|
$fa-var-magnet: \f076;
|
||||||
|
$fa-var-mail-forward: \f064;
|
||||||
|
$fa-var-mail-reply: \f112;
|
||||||
|
$fa-var-mail-reply-all: \f122;
|
||||||
|
$fa-var-male: \f183;
|
||||||
|
$fa-var-map: \f279;
|
||||||
|
$fa-var-map-marker: \f041;
|
||||||
|
$fa-var-map-o: \f278;
|
||||||
|
$fa-var-map-pin: \f276;
|
||||||
|
$fa-var-map-signs: \f277;
|
||||||
|
$fa-var-mariadb: \f352;
|
||||||
|
$fa-var-markdown: \f353;
|
||||||
|
$fa-var-mars: \f222;
|
||||||
|
$fa-var-mars-double: \f227;
|
||||||
|
$fa-var-mars-stroke: \f229;
|
||||||
|
$fa-var-mars-stroke-h: \f22b;
|
||||||
|
$fa-var-mars-stroke-v: \f22a;
|
||||||
|
$fa-var-mastodon: \f2e1;
|
||||||
|
$fa-var-mastodon-alt: \f2e2;
|
||||||
|
$fa-var-mastodon-square: \f300;
|
||||||
|
$fa-var-matrix-org: \f313;
|
||||||
|
$fa-var-maxcdn: \f136;
|
||||||
|
$fa-var-meanpath: \f20c;
|
||||||
|
$fa-var-medium: \f23a;
|
||||||
|
$fa-var-medium-square: \f2f8;
|
||||||
|
$fa-var-medkit: \f0fa;
|
||||||
|
$fa-var-meetup: \f2e0;
|
||||||
|
$fa-var-meh-o: \f11a;
|
||||||
|
$fa-var-mercury: \f223;
|
||||||
|
$fa-var-microchip: \f2db;
|
||||||
|
$fa-var-microphone: \f130;
|
||||||
|
$fa-var-microphone-slash: \f131;
|
||||||
|
$fa-var-minus: \f068;
|
||||||
|
$fa-var-minus-circle: \f056;
|
||||||
|
$fa-var-minus-square: \f146;
|
||||||
|
$fa-var-minus-square-o: \f147;
|
||||||
|
$fa-var-mixcloud: \f289;
|
||||||
|
$fa-var-mobile: \f10b;
|
||||||
|
$fa-var-mobile-phone: \f10b;
|
||||||
|
$fa-var-modx: \f285;
|
||||||
|
$fa-var-money: \f0d6;
|
||||||
|
$fa-var-moon: \f328;
|
||||||
|
$fa-var-moon-o: \f186;
|
||||||
|
$fa-var-mortar-board: \f19d;
|
||||||
|
$fa-var-motorcycle: \f21c;
|
||||||
|
$fa-var-mouse-pointer: \f245;
|
||||||
|
$fa-var-music: \f001;
|
||||||
|
$fa-var-mysql: \f354;
|
||||||
|
$fa-var-navicon: \f0c9;
|
||||||
|
$fa-var-neuter: \f22c;
|
||||||
|
$fa-var-newspaper-o: \f1ea;
|
||||||
|
$fa-var-nextcloud: \f306;
|
||||||
|
$fa-var-nextcloud-square: \f307;
|
||||||
|
$fa-var-nodejs: \f308;
|
||||||
|
$fa-var-nordcast: \f355;
|
||||||
|
$fa-var-object-group: \f247;
|
||||||
|
$fa-var-object-ungroup: \f248;
|
||||||
|
$fa-var-odnoklassniki: \f263;
|
||||||
|
$fa-var-odnoklassniki-square: \f264;
|
||||||
|
$fa-var-open-collective: \f336;
|
||||||
|
$fa-var-opencart: \f23d;
|
||||||
|
$fa-var-openid: \f19b;
|
||||||
|
$fa-var-opera: \f26a;
|
||||||
|
$fa-var-optin-monster: \f23c;
|
||||||
|
$fa-var-orcid: \f337;
|
||||||
|
$fa-var-outdent: \f03b;
|
||||||
|
$fa-var-pagelines: \f18c;
|
||||||
|
$fa-var-paint-brush: \f1fc;
|
||||||
|
$fa-var-paper-plane: \f1d8;
|
||||||
|
$fa-var-paper-plane-o: \f1d9;
|
||||||
|
$fa-var-paperclip: \f0c6;
|
||||||
|
$fa-var-paragraph: \f1dd;
|
||||||
|
$fa-var-paste: \f0ea;
|
||||||
|
$fa-var-patreon: \f2f0;
|
||||||
|
$fa-var-pause: \f04c;
|
||||||
|
$fa-var-pause-circle: \f28b;
|
||||||
|
$fa-var-pause-circle-o: \f28c;
|
||||||
|
$fa-var-paw: \f1b0;
|
||||||
|
$fa-var-paypal: \f1ed;
|
||||||
|
$fa-var-peertube: \f2e4;
|
||||||
|
$fa-var-pencil: \f040;
|
||||||
|
$fa-var-pencil-square: \f14b;
|
||||||
|
$fa-var-pencil-square-o: \f044;
|
||||||
|
$fa-var-percent: \f295;
|
||||||
|
$fa-var-phone: \f095;
|
||||||
|
$fa-var-phone-square: \f098;
|
||||||
|
$fa-var-phone-volume: \f2a0;
|
||||||
|
$fa-var-photo: \f03e;
|
||||||
|
$fa-var-php: \f30e;
|
||||||
|
$fa-var-picture-o: \f03e;
|
||||||
|
$fa-var-pie-chart: \f200;
|
||||||
|
$fa-var-pinterest: \f0d2;
|
||||||
|
$fa-var-pinterest-p: \f231;
|
||||||
|
$fa-var-pinterest-square: \f0d3;
|
||||||
|
$fa-var-pixelfed: \f314;
|
||||||
|
$fa-var-plane: \f072;
|
||||||
|
$fa-var-play: \f04b;
|
||||||
|
$fa-var-play-circle: \f144;
|
||||||
|
$fa-var-play-circle-o: \f01d;
|
||||||
|
$fa-var-pleroma: \f324;
|
||||||
|
$fa-var-plug: \f1e6;
|
||||||
|
$fa-var-plume: \f356;
|
||||||
|
$fa-var-plus: \f067;
|
||||||
|
$fa-var-plus-circle: \f055;
|
||||||
|
$fa-var-plus-square: \f0fe;
|
||||||
|
$fa-var-plus-square-o: \f196;
|
||||||
|
$fa-var-podcast: \f2ce;
|
||||||
|
$fa-var-postgresql: \f357;
|
||||||
|
$fa-var-pound: \f154;
|
||||||
|
$fa-var-power-off: \f011;
|
||||||
|
$fa-var-print: \f02f;
|
||||||
|
$fa-var-product-hunt: \f288;
|
||||||
|
$fa-var-puzzle-piece: \f12e;
|
||||||
|
$fa-var-python: \f322;
|
||||||
|
$fa-var-qq: \f1d6;
|
||||||
|
$fa-var-qrcode: \f029;
|
||||||
|
$fa-var-question: \f128;
|
||||||
|
$fa-var-question-circle: \f059;
|
||||||
|
$fa-var-question-circle-o: \f29c;
|
||||||
|
$fa-var-quora: \f2c4;
|
||||||
|
$fa-var-quote-left: \f10d;
|
||||||
|
$fa-var-quote-right: \f10e;
|
||||||
|
$fa-var-ra: \f1d0;
|
||||||
|
$fa-var-random: \f074;
|
||||||
|
$fa-var-ravelry: \f2d9;
|
||||||
|
$fa-var-react: \f302;
|
||||||
|
$fa-var-rebel: \f1d0;
|
||||||
|
$fa-var-recycle: \f1b8;
|
||||||
|
$fa-var-reddit: \f1a1;
|
||||||
|
$fa-var-reddit-alien: \f281;
|
||||||
|
$fa-var-reddit-square: \f1a2;
|
||||||
|
$fa-var-refresh: \f021;
|
||||||
|
$fa-var-registered: \f25d;
|
||||||
|
$fa-var-remove: \f00d;
|
||||||
|
$fa-var-renren: \f18b;
|
||||||
|
$fa-var-reorder: \f0c9;
|
||||||
|
$fa-var-repeat: \f01e;
|
||||||
|
$fa-var-reply: \f112;
|
||||||
|
$fa-var-reply-all: \f122;
|
||||||
|
$fa-var-researchgate: \f338;
|
||||||
|
$fa-var-resistance: \f1d0;
|
||||||
|
$fa-var-retweet: \f079;
|
||||||
|
$fa-var-rmb: \f157;
|
||||||
|
$fa-var-road: \f018;
|
||||||
|
$fa-var-rocket: \f135;
|
||||||
|
$fa-var-rotate-left: \f0e2;
|
||||||
|
$fa-var-rotate-right: \f01e;
|
||||||
|
$fa-var-rouble: \f158;
|
||||||
|
$fa-var-rss: \f09e;
|
||||||
|
$fa-var-rss-square: \f143;
|
||||||
|
$fa-var-rub: \f158;
|
||||||
|
$fa-var-ruble: \f158;
|
||||||
|
$fa-var-rupee: \f156;
|
||||||
|
$fa-var-s15: \f2cd;
|
||||||
|
$fa-var-safari: \f267;
|
||||||
|
$fa-var-sass: \f358;
|
||||||
|
$fa-var-sass-alt: \f359;
|
||||||
|
$fa-var-save: \f0c7;
|
||||||
|
$fa-var-scissors: \f0c4;
|
||||||
|
$fa-var-scribd: \f28a;
|
||||||
|
$fa-var-scuttlebutt: \f2ea;
|
||||||
|
$fa-var-search: \f002;
|
||||||
|
$fa-var-search-minus: \f010;
|
||||||
|
$fa-var-search-plus: \f00e;
|
||||||
|
$fa-var-sellsy: \f213;
|
||||||
|
$fa-var-send: \f1d8;
|
||||||
|
$fa-var-send-o: \f1d9;
|
||||||
|
$fa-var-server: \f233;
|
||||||
|
$fa-var-shaarli: \f2f5;
|
||||||
|
$fa-var-shaarli-o: \f2f6;
|
||||||
|
$fa-var-share: \f064;
|
||||||
|
$fa-var-share-alt: \f1e0;
|
||||||
|
$fa-var-share-alt-square: \f1e1;
|
||||||
|
$fa-var-share-square: \f14d;
|
||||||
|
$fa-var-share-square-o: \f045;
|
||||||
|
$fa-var-shekel: \f20b;
|
||||||
|
$fa-var-sheqel: \f20b;
|
||||||
|
$fa-var-shield: \f132;
|
||||||
|
$fa-var-ship: \f21a;
|
||||||
|
$fa-var-shirtsinbulk: \f214;
|
||||||
|
$fa-var-shopping-bag: \f290;
|
||||||
|
$fa-var-shopping-basket: \f291;
|
||||||
|
$fa-var-shopping-cart: \f07a;
|
||||||
|
$fa-var-shower: \f2cc;
|
||||||
|
$fa-var-sign-in: \f090;
|
||||||
|
$fa-var-sign-language: \f2a7;
|
||||||
|
$fa-var-sign-out: \f08b;
|
||||||
|
$fa-var-signal: \f012;
|
||||||
|
$fa-var-signalapp: \f30c;
|
||||||
|
$fa-var-signing: \f2a7;
|
||||||
|
$fa-var-simplybuilt: \f215;
|
||||||
|
$fa-var-sitemap: \f0e8;
|
||||||
|
$fa-var-skate: \f35a;
|
||||||
|
$fa-var-sketchfab: \f35b;
|
||||||
|
$fa-var-skyatlas: \f216;
|
||||||
|
$fa-var-skype: \f17e;
|
||||||
|
$fa-var-slack: \f198;
|
||||||
|
$fa-var-sliders: \f1de;
|
||||||
|
$fa-var-slideshare: \f1e7;
|
||||||
|
$fa-var-smile-o: \f118;
|
||||||
|
$fa-var-snapchat: \f2ab;
|
||||||
|
$fa-var-snapchat-ghost: \f2ac;
|
||||||
|
$fa-var-snapchat-square: \f2ad;
|
||||||
|
$fa-var-snowdrift: \f2f1;
|
||||||
|
$fa-var-snowflake-o: \f2dc;
|
||||||
|
$fa-var-soccer-ball-o: \f1e3;
|
||||||
|
$fa-var-social-home: \f2ec;
|
||||||
|
$fa-var-sort: \f0dc;
|
||||||
|
$fa-var-sort-alpha-asc: \f15d;
|
||||||
|
$fa-var-sort-alpha-desc: \f15e;
|
||||||
|
$fa-var-sort-alpha-down: \f15d;
|
||||||
|
$fa-var-sort-alpha-up: \f15e;
|
||||||
|
$fa-var-sort-amount-asc: \f160;
|
||||||
|
$fa-var-sort-amount-desc: \f161;
|
||||||
|
$fa-var-sort-amount-down: \f160;
|
||||||
|
$fa-var-sort-amount-up: \f161;
|
||||||
|
$fa-var-sort-asc: \f0de;
|
||||||
|
$fa-var-sort-desc: \f0dd;
|
||||||
|
$fa-var-sort-down: \f0dd;
|
||||||
|
$fa-var-sort-numeric-asc: \f162;
|
||||||
|
$fa-var-sort-numeric-desc: \f163;
|
||||||
|
$fa-var-sort-numeric-down: \f162;
|
||||||
|
$fa-var-sort-numeric-up: \f163;
|
||||||
|
$fa-var-sort-up: \f0de;
|
||||||
|
$fa-var-soundcloud: \f1be;
|
||||||
|
$fa-var-space-shuttle: \f197;
|
||||||
|
$fa-var-spell-check: \f327;
|
||||||
|
$fa-var-spinner: \f110;
|
||||||
|
$fa-var-spoon: \f1b1;
|
||||||
|
$fa-var-spotify: \f1bc;
|
||||||
|
$fa-var-square: \f0c8;
|
||||||
|
$fa-var-square-o: \f096;
|
||||||
|
$fa-var-ssb: \f2ea;
|
||||||
|
$fa-var-stack-exchange: \f18d;
|
||||||
|
$fa-var-stack-overflow: \f16c;
|
||||||
|
$fa-var-star: \f005;
|
||||||
|
$fa-var-star-half: \f089;
|
||||||
|
$fa-var-star-half-empty: \f123;
|
||||||
|
$fa-var-star-half-full: \f123;
|
||||||
|
$fa-var-star-half-o: \f123;
|
||||||
|
$fa-var-star-o: \f006;
|
||||||
|
$fa-var-steam: \f1b6;
|
||||||
|
$fa-var-steam-square: \f1b7;
|
||||||
|
$fa-var-step-backward: \f048;
|
||||||
|
$fa-var-step-forward: \f051;
|
||||||
|
$fa-var-stethoscope: \f0f1;
|
||||||
|
$fa-var-sticky-note: \f249;
|
||||||
|
$fa-var-sticky-note-o: \f24a;
|
||||||
|
$fa-var-stop: \f04d;
|
||||||
|
$fa-var-stop-circle: \f28d;
|
||||||
|
$fa-var-stop-circle-o: \f28e;
|
||||||
|
$fa-var-street-view: \f21d;
|
||||||
|
$fa-var-strikethrough: \f0cc;
|
||||||
|
$fa-var-stumbleupon: \f1a4;
|
||||||
|
$fa-var-stumbleupon-circle: \f1a3;
|
||||||
|
$fa-var-subscript: \f12c;
|
||||||
|
$fa-var-subway: \f239;
|
||||||
|
$fa-var-suitcase: \f0f2;
|
||||||
|
$fa-var-sun: \f329;
|
||||||
|
$fa-var-sun-o: \f185;
|
||||||
|
$fa-var-superpowers: \f2dd;
|
||||||
|
$fa-var-superscript: \f12b;
|
||||||
|
$fa-var-support: \f1cd;
|
||||||
|
$fa-var-sync: \f021;
|
||||||
|
$fa-var-syncthing: \f311;
|
||||||
|
$fa-var-table: \f0ce;
|
||||||
|
$fa-var-tablet: \f10a;
|
||||||
|
$fa-var-tachometer: \f0e4;
|
||||||
|
$fa-var-tag: \f02b;
|
||||||
|
$fa-var-tags: \f02c;
|
||||||
|
$fa-var-tasks: \f0ae;
|
||||||
|
$fa-var-taxi: \f1ba;
|
||||||
|
$fa-var-telegram: \f2c6;
|
||||||
|
$fa-var-television: \f26c;
|
||||||
|
$fa-var-tencent-weibo: \f1d5;
|
||||||
|
$fa-var-terminal: \f120;
|
||||||
|
$fa-var-tex: \f35c;
|
||||||
|
$fa-var-text-height: \f034;
|
||||||
|
$fa-var-text-width: \f035;
|
||||||
|
$fa-var-textpattern: \f35d;
|
||||||
|
$fa-var-th: \f00a;
|
||||||
|
$fa-var-th-large: \f009;
|
||||||
|
$fa-var-th-list: \f00b;
|
||||||
|
$fa-var-themeisle: \f2b2;
|
||||||
|
$fa-var-thermometer: \f2c7;
|
||||||
|
$fa-var-thermometer-0: \f2cb;
|
||||||
|
$fa-var-thermometer-1: \f2ca;
|
||||||
|
$fa-var-thermometer-2: \f2c9;
|
||||||
|
$fa-var-thermometer-3: \f2c8;
|
||||||
|
$fa-var-thermometer-4: \f2c7;
|
||||||
|
$fa-var-thermometer-empty: \f2cb;
|
||||||
|
$fa-var-thermometer-full: \f2c7;
|
||||||
|
$fa-var-thermometer-half: \f2c9;
|
||||||
|
$fa-var-thermometer-quarter: \f2ca;
|
||||||
|
$fa-var-thermometer-three-quarters: \f2c8;
|
||||||
|
$fa-var-thumb-tack: \f08d;
|
||||||
|
$fa-var-thumbs-down: \f165;
|
||||||
|
$fa-var-thumbs-o-down: \f088;
|
||||||
|
$fa-var-thumbs-o-up: \f087;
|
||||||
|
$fa-var-thumbs-up: \f164;
|
||||||
|
$fa-var-ticket: \f145;
|
||||||
|
$fa-var-times: \f00d;
|
||||||
|
$fa-var-times-circle: \f057;
|
||||||
|
$fa-var-times-circle-o: \f05c;
|
||||||
|
$fa-var-times-rectangle: \f2d3;
|
||||||
|
$fa-var-times-rectangle-o: \f2d4;
|
||||||
|
$fa-var-tint: \f043;
|
||||||
|
$fa-var-tipeee: \f301;
|
||||||
|
$fa-var-toggle-down: \f150;
|
||||||
|
$fa-var-toggle-left: \f191;
|
||||||
|
$fa-var-toggle-off: \f204;
|
||||||
|
$fa-var-toggle-on: \f205;
|
||||||
|
$fa-var-toggle-right: \f152;
|
||||||
|
$fa-var-toggle-up: \f151;
|
||||||
|
$fa-var-tor-onion: \f32e;
|
||||||
|
$fa-var-trademark: \f25c;
|
||||||
|
$fa-var-train: \f238;
|
||||||
|
$fa-var-transgender: \f224;
|
||||||
|
$fa-var-transgender-alt: \f225;
|
||||||
|
$fa-var-trash: \f1f8;
|
||||||
|
$fa-var-trash-o: \f014;
|
||||||
|
$fa-var-tree: \f1bb;
|
||||||
|
$fa-var-trello: \f181;
|
||||||
|
$fa-var-tripadvisor: \f262;
|
||||||
|
$fa-var-trophy: \f091;
|
||||||
|
$fa-var-truck: \f0d1;
|
||||||
|
$fa-var-try: \f195;
|
||||||
|
$fa-var-tty: \f1e4;
|
||||||
|
$fa-var-tumblr: \f173;
|
||||||
|
$fa-var-tumblr-square: \f174;
|
||||||
|
$fa-var-turkish-lira: \f195;
|
||||||
|
$fa-var-tv: \f26c;
|
||||||
|
$fa-var-twitch: \f1e8;
|
||||||
|
$fa-var-twitter: \f099;
|
||||||
|
$fa-var-twitter-square: \f081;
|
||||||
|
$fa-var-umbrella: \f0e9;
|
||||||
|
$fa-var-underline: \f0cd;
|
||||||
|
$fa-var-undo: \f0e2;
|
||||||
|
$fa-var-unity: \f35e;
|
||||||
|
$fa-var-universal-access: \f29a;
|
||||||
|
$fa-var-university: \f19c;
|
||||||
|
$fa-var-unlink: \f127;
|
||||||
|
$fa-var-unlock: \f09c;
|
||||||
|
$fa-var-unlock-alt: \f13e;
|
||||||
|
$fa-var-unsorted: \f0dc;
|
||||||
|
$fa-var-unsplash: \f325;
|
||||||
|
$fa-var-upload: \f093;
|
||||||
|
$fa-var-usb: \f287;
|
||||||
|
$fa-var-usd: \f155;
|
||||||
|
$fa-var-user: \f007;
|
||||||
|
$fa-var-user-circle: \f2bd;
|
||||||
|
$fa-var-user-circle-o: \f2be;
|
||||||
|
$fa-var-user-md: \f0f0;
|
||||||
|
$fa-var-user-o: \f2c0;
|
||||||
|
$fa-var-user-plus: \f234;
|
||||||
|
$fa-var-user-secret: \f21b;
|
||||||
|
$fa-var-user-times: \f235;
|
||||||
|
$fa-var-users: \f0c0;
|
||||||
|
$fa-var-utensil-spoon: \f1b1;
|
||||||
|
$fa-var-utensils: \f0f5;
|
||||||
|
$fa-var-vcard: \f2bb;
|
||||||
|
$fa-var-vcard-o: \f2bc;
|
||||||
|
$fa-var-venus: \f221;
|
||||||
|
$fa-var-venus-double: \f226;
|
||||||
|
$fa-var-venus-mars: \f228;
|
||||||
|
$fa-var-viacoin: \f237;
|
||||||
|
$fa-var-viadeo: \f2a9;
|
||||||
|
$fa-var-viadeo-square: \f2aa;
|
||||||
|
$fa-var-video: \f03d;
|
||||||
|
$fa-var-video-camera: \f03d;
|
||||||
|
$fa-var-vimeo: \f27d;
|
||||||
|
$fa-var-vimeo-square: \f194;
|
||||||
|
$fa-var-vimeo-v: \f27d;
|
||||||
|
$fa-var-vine: \f1ca;
|
||||||
|
$fa-var-vk: \f189;
|
||||||
|
$fa-var-volume-control-phone: \f2a0;
|
||||||
|
$fa-var-volume-down: \f027;
|
||||||
|
$fa-var-volume-mute: \f32f;
|
||||||
|
$fa-var-volume-off: \f026;
|
||||||
|
$fa-var-volume-up: \f028;
|
||||||
|
$fa-var-warning: \f071;
|
||||||
|
$fa-var-wechat: \f1d7;
|
||||||
|
$fa-var-weibo: \f18a;
|
||||||
|
$fa-var-weixin: \f1d7;
|
||||||
|
$fa-var-whatsapp: \f232;
|
||||||
|
$fa-var-wheelchair: \f193;
|
||||||
|
$fa-var-wheelchair-alt: \f29b;
|
||||||
|
$fa-var-wifi: \f1eb;
|
||||||
|
$fa-var-wikidata: \f31a;
|
||||||
|
$fa-var-wikipedia-w: \f266;
|
||||||
|
$fa-var-window-close: \f2d3;
|
||||||
|
$fa-var-window-close-o: \f2d4;
|
||||||
|
$fa-var-window-maximize: \f2d0;
|
||||||
|
$fa-var-window-minimize: \f2d1;
|
||||||
|
$fa-var-window-restore: \f2d2;
|
||||||
|
$fa-var-windows: \f17a;
|
||||||
|
$fa-var-wire: \f32c;
|
||||||
|
$fa-var-won: \f159;
|
||||||
|
$fa-var-wordpress: \f19a;
|
||||||
|
$fa-var-wpbeginner: \f297;
|
||||||
|
$fa-var-wpexplorer: \f2de;
|
||||||
|
$fa-var-wpforms: \f298;
|
||||||
|
$fa-var-wrench: \f0ad;
|
||||||
|
$fa-var-xing: \f168;
|
||||||
|
$fa-var-xing-square: \f169;
|
||||||
|
$fa-var-xmpp: \f2f9;
|
||||||
|
$fa-var-y-combinator: \f23b;
|
||||||
|
$fa-var-y-combinator-square: \f1d4;
|
||||||
|
$fa-var-yahoo: \f19e;
|
||||||
|
$fa-var-yc: \f23b;
|
||||||
|
$fa-var-yc-square: \f1d4;
|
||||||
|
$fa-var-yelp: \f1e9;
|
||||||
|
$fa-var-yen: \f157;
|
||||||
|
$fa-var-yoast: \f2b1;
|
||||||
|
$fa-var-youtube: \f167;
|
||||||
|
$fa-var-youtube-play: \f16a;
|
||||||
|
$fa-var-youtube-square: \f166;
|
||||||
|
$fa-var-zotero: \f309;
|
||||||
|
|
||||||
28
assets/scss/fork-awesome/fork-awesome.scss
Normal file
28
assets/scss/fork-awesome/fork-awesome.scss
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/*!
|
||||||
|
Fork Awesome 1.2.0
|
||||||
|
License - https://forkaweso.me/Fork-Awesome/license
|
||||||
|
|
||||||
|
Copyright 2018 Dave Gandy & Fork Awesome
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@import "variables";
|
||||||
|
@import "mixins";
|
||||||
|
@import "functions";
|
||||||
|
@import "path";
|
||||||
|
@import "core";
|
||||||
|
@import "larger";
|
||||||
|
@import "fixed-width";
|
||||||
|
@import "list";
|
||||||
|
@import "bordered-pulled";
|
||||||
|
@import "animated";
|
||||||
|
@import "rotated-flipped";
|
||||||
|
@import "stacked";
|
||||||
|
@import "icons";
|
||||||
|
@import "screen-reader";
|
||||||
5
config.toml
Normal file
5
config.toml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
baseURL = "https://example.com/"
|
||||||
|
|
||||||
|
[module]
|
||||||
|
[module.hugoVersion]
|
||||||
|
min = "0.77.0"
|
||||||
1
docs/analytics.md
Normal file
1
docs/analytics.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
WIP
|
||||||
1
docs/comment-system.md
Normal file
1
docs/comment-system.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
WIP
|
||||||
345
docs/configurations.md
Normal file
345
docs/configurations.md
Normal file
@@ -0,0 +1,345 @@
|
|||||||
|
# Configurations
|
||||||
|
|
||||||
|
* [About Hugo Configurations](#about-hugo-configurations)
|
||||||
|
* [Analytics](#analytics)
|
||||||
|
* [Google Analytics](#google-analytics)
|
||||||
|
* [Google Tag Manager](#google-tag-manager)
|
||||||
|
* [Fathom Analytics](#fathom-analytics)
|
||||||
|
* [Plausible Analytics](#plausible-analytics)
|
||||||
|
* [Goat Counter](#goat-counter)
|
||||||
|
* [Cloudflare](#cloudflare)
|
||||||
|
* [Matomo](#matomo)
|
||||||
|
* [Commenting Systems](#commenting-systems)
|
||||||
|
* [Disqus](#disqus)
|
||||||
|
* [Commento](#commento)
|
||||||
|
* [Utterances](#utterances)
|
||||||
|
* [Theme Parameters](#theme-parameters)
|
||||||
|
* [Social Icons Configuration](#social-icons-configuration)
|
||||||
|
* [Menu Items Configurations](#menu-items-configurations)
|
||||||
|
* [CSP](#csp)
|
||||||
|
* [Complete Example](#complete-example)
|
||||||
|
* [Front Matter](#front-matter)
|
||||||
|
* [Posts](#posts)
|
||||||
|
|
||||||
|
## About Hugo Configurations
|
||||||
|
|
||||||
|
This theme supports:
|
||||||
|
|
||||||
|
* Analytics
|
||||||
|
* [Google Analytics](https://developers.google.com/analytics)
|
||||||
|
* [Google Tag Manager](https://developers.google.com/tag-manager)
|
||||||
|
* [Fathom Analytics](https://usefathom.com/)
|
||||||
|
* [Plausible Analytics](https://plausible.io/)
|
||||||
|
* [Goat Counter](https://www.goatcounter.com/)
|
||||||
|
* [Cloudflare](https://www.cloudflare.com/analytics/)
|
||||||
|
* [Matomo](https://matomo.org/)
|
||||||
|
* Commenting Systems
|
||||||
|
* [Disqus](https://disqus.com/)
|
||||||
|
* [Commento](https://commento.io/)
|
||||||
|
* [Utterances](https://utteranc.es/)
|
||||||
|
|
||||||
|
### Analytics
|
||||||
|
|
||||||
|
#### Google Analytics
|
||||||
|
|
||||||
|
Follow [these steps](https://gohugo.io/templates/internal/#configure-google-analytics).
|
||||||
|
|
||||||
|
#### Google Tag Manager
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.googleTagManager]
|
||||||
|
id = "gid"
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Fathom Analytics
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.fathomAnalytics]
|
||||||
|
siteID = "ABCDE"
|
||||||
|
serverURL = "cdn.usefathom.com" # (optionnal) Replace if you use a custom domain
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Plausible Analytics
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.plausibleAnalytics]
|
||||||
|
domain = "example.com"
|
||||||
|
serverURL = "plausible.io" # (optionnal) Replace if you use a custom domain
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Goat Counter
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.goatCounter]
|
||||||
|
code = "code" # You will access your account at https://[code].goatcounter.com
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Cloudflare
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.cloudflare]
|
||||||
|
token = "token"
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Matomo
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.matomo]
|
||||||
|
siteID = "ABCDE"
|
||||||
|
serverURL = "analytics.example.com"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Commenting Systems
|
||||||
|
|
||||||
|
Comments are displayed within post pages, but can be disabled with `disableComments` front-matter.
|
||||||
|
|
||||||
|
#### Disqus
|
||||||
|
|
||||||
|
Follow [these steps](https://gohugo.io/content-management/comments/#configure-disqus).
|
||||||
|
|
||||||
|
#### Commento
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params]
|
||||||
|
commentoURL = "https://cdn.commento.io" # Replace if you use a custom domain
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Utterances
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.utterances]
|
||||||
|
repo = "" # https://utteranc.es/#heading-repository
|
||||||
|
issueTerm = "" # https://utteranc.es/#heading-mapping
|
||||||
|
label = "" # https://utteranc.es/#heading-issue-label
|
||||||
|
theme = "" # https://utteranc.es/#heading-theme
|
||||||
|
```
|
||||||
|
|
||||||
|
## Theme Parameters
|
||||||
|
|
||||||
|
These are all the parameters used by `hugo-coder` theme.
|
||||||
|
|
||||||
|
| Name | Type | Required | Description | Default | Example |
|
||||||
|
| ----------------------------- | ------ | -------- | ------------------------------------------------ | -------------------------------- | ------------------------------------------------ |
|
||||||
|
| author | string | Yes | Author name. | | `"John Doe"` |
|
||||||
|
| info | string | Yes | An headline, job title or similar. | | `"Full Stack Developer"` |
|
||||||
|
| description | string | Yes | Description of the site. | | `"John Doe's personal website"` |
|
||||||
|
| keywords | string | Yes | Site keywords. | | `"blog,developer,personal"` |
|
||||||
|
| avatarURL | string | No | Photo of the author. | | `"images/avatar.jpg"` |
|
||||||
|
| gravatar | string | No | Gravatar photo of the author | | `"john.doe@example.com"` |
|
||||||
|
| favicon_32 | string | No | Custom path to a 32x32 favicon. | `"/img/favicon-32x32.png"` | `"/img/favicon-32x32.png"` |
|
||||||
|
| favicon_16 | string | No | Custom path to a 16x16 favicon. | `"/img/favicon-16x16.png"` | `"/img/favicon-16x16.png"` |
|
||||||
|
| touchIcon | string | No | Custom path to a touch-icon | `"/images/apple-touch-icon.png"` | `"/images/apple-touch-icon.png"` |
|
||||||
|
| since | string | No | Date shown in the footer before now year | | `"2020"` |
|
||||||
|
| maxSeeAlsoItems | number | No | Series see also post count | `5` | `10` |
|
||||||
|
| commit | string | No | Show the last git commit in the footer | | `"https://github.com/luizdepra/hugo-coder/tree/"`|
|
||||||
|
| rtl | bool | No | Enable the Right To Left mode. | `false` | `true` or `false` |
|
||||||
|
| math | bool | No | Enable MathJax Module and add JS into your site. | `false` | `true` or `false` |
|
||||||
|
| katex | bool | No | Enable katex for all content types. | `false` | `true` or `false` |
|
||||||
|
| colorScheme | string | No | Specify light/dark colorscheme | `"auto"` | `"auto"` or `"light"` or `"dark"` |
|
||||||
|
| hideColorSchemeToggle | bool | No | If true, hides the color sheme toggle | `false` | `true` or `false` |
|
||||||
|
| customCSS | list | No | Add extra CSS files to the website. | [] | `["css/extra-style.css"]` |
|
||||||
|
| customSCSS | list | No | Add extra SCSS files to the website. | [] | `["scss/extra-style.scss"]` |
|
||||||
|
| customJS | list | No | Add extra JS files to the website. | [] | `["js/extra-script.js"]` |
|
||||||
|
| enableTwemoji | bool | No | Adds support for Twemoji | `false` | `true` or `false` |
|
||||||
|
|
||||||
|
### Social Icons Configuration
|
||||||
|
|
||||||
|
Social Icons are optional. To use them you will need to set at least all the following required parameters for each icon.
|
||||||
|
|
||||||
|
| Configuration | Type | Required | Description | Example |
|
||||||
|
| -------------- | ------ | -------- | ---------------------------------------- | ------------------------------- |
|
||||||
|
| name | string | Yes | Icon name. | `"Github"` |
|
||||||
|
| icon | string | Yes | ForkAwesome icon classes. | `"fa fa-github"` |
|
||||||
|
| weight | int | Yes | Icon order. | `1` |
|
||||||
|
| url | string | Yes | URL to redirect. | `"https://github.com/johndoe/"` |
|
||||||
|
|
||||||
|
An example:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[[params.social]]
|
||||||
|
name = "Github"
|
||||||
|
icon = "fa fa-github fa-2x"
|
||||||
|
weight = 1
|
||||||
|
url = "https://github.com/johndoe/"
|
||||||
|
[[params.social]]
|
||||||
|
name = "Gitlab"
|
||||||
|
icon = "fa fa-gitlab fa-2x"
|
||||||
|
weight = 2
|
||||||
|
url = "https://gitlab.com/johndoe/"
|
||||||
|
[[params.social]]
|
||||||
|
name = "Twitter"
|
||||||
|
icon = "fa fa-twitter fa-2x"
|
||||||
|
weight = 3
|
||||||
|
url = "https://twitter.com/johndoe/"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Menu Items Configurations
|
||||||
|
|
||||||
|
Menu Items are optional. To use them you will need to set all the following required parameters for each icon.
|
||||||
|
|
||||||
|
| Configuration | Type | Required | Description | Example |
|
||||||
|
| -------------- | ------ | -------- | ---------------------------------------- | ------------------------------- |
|
||||||
|
| name | string | Yes | Menu Item name. | `"Posts"` |
|
||||||
|
| weight | int | Yes | Menu Item order. | `1` |
|
||||||
|
| url | string | Yes | URL to redirect. | `"/posts/"` |
|
||||||
|
| target | string | No | URL target attribute. | `"_blank"` |
|
||||||
|
| rel | string | No | URL rel attribute. | `"alternate"` |
|
||||||
|
| type | string | No | URL type attribute. | `"application/rss+xml"` |
|
||||||
|
|
||||||
|
An example:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Blog"
|
||||||
|
weight = 1
|
||||||
|
url = "posts/"
|
||||||
|
[[menu.main]]
|
||||||
|
name = "About"
|
||||||
|
weight = 2
|
||||||
|
url = "about/"
|
||||||
|
```
|
||||||
|
|
||||||
|
### CSP
|
||||||
|
|
||||||
|
CSP stands for [Content Security Policy](https://developers.google.com/web/fundamentals/security/csp). These configurations are optional. To use them you will need to set all the following required parameters. See [here](https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources) for reference.
|
||||||
|
|
||||||
|
| Configuration | Type | Required | Description | Example |
|
||||||
|
| -------------- | ----------- | -------- | ----------- | ------------------------------- |
|
||||||
|
| childsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| fontsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| formaction | string list | Yes | | `["'self'"]` |
|
||||||
|
| framesrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| imgsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| objectsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| stylesrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| scriptsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
| prefetchsrc | string list | Yes | | `["'self'"]` |
|
||||||
|
|
||||||
|
An example:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params.csp]
|
||||||
|
childsrc = ["'self'"]
|
||||||
|
fontsrc = [
|
||||||
|
"'self'",
|
||||||
|
"https://fonts.gstatic.com",
|
||||||
|
"https://cdn.jsdelivr.net/"
|
||||||
|
]
|
||||||
|
formaction = ["'self'"]
|
||||||
|
framesrc = ["'self'"]
|
||||||
|
imgsrc = ["'self'"]
|
||||||
|
objectsrc = ["'none'"]
|
||||||
|
stylesrc = [
|
||||||
|
"'self'",
|
||||||
|
"'unsafe-inline'",
|
||||||
|
"https://fonts.googleapis.com/",
|
||||||
|
"https://cdn.jsdelivr.net/"
|
||||||
|
]
|
||||||
|
scriptsrc = [
|
||||||
|
"'self'",
|
||||||
|
"'unsafe-inline'",
|
||||||
|
"https://www.google-analytics.com"
|
||||||
|
]
|
||||||
|
prefetchsrc = ["'self'"]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Complete Example
|
||||||
|
|
||||||
|
This is a complete configuration example with some recommended values.
|
||||||
|
|
||||||
|
```toml
|
||||||
|
baseurl = "http://www.example.com"
|
||||||
|
title = "johndoe"
|
||||||
|
theme = "hugo-coder"
|
||||||
|
languagecode = "en"
|
||||||
|
defaultcontentlanguage = "en"
|
||||||
|
|
||||||
|
paginate = 20
|
||||||
|
|
||||||
|
pygmentsstyle = "bw"
|
||||||
|
pygmentscodefences = true
|
||||||
|
pygmentscodefencesguesssyntax = true
|
||||||
|
|
||||||
|
disqusShortname = "yourdiscussshortname"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
author = "John Doe"
|
||||||
|
info = "Full Stack DevOps and Magician"
|
||||||
|
description = "John Doe's personal website"
|
||||||
|
keywords = "blog,developer,personal"
|
||||||
|
avatarurl = "images/avatar.jpg"
|
||||||
|
#gravatar = "john.doe@example.com"
|
||||||
|
|
||||||
|
favicon_32 = "/img/favicon-32x32.png"
|
||||||
|
favicon_16 = "/img/favicon-16x16.png"
|
||||||
|
|
||||||
|
since = 2019
|
||||||
|
|
||||||
|
enableTwemoji = true
|
||||||
|
|
||||||
|
colorScheme = "auto"
|
||||||
|
hidecolorschemetoggle = false
|
||||||
|
|
||||||
|
customCSS = ["css/custom.css"]
|
||||||
|
customSCSS = ["scss/custom.scss"]
|
||||||
|
customJS = ["js/custom.js"]
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
category = "categories"
|
||||||
|
series = "series"
|
||||||
|
tag = "tags"
|
||||||
|
author = "authors"
|
||||||
|
|
||||||
|
# Social links
|
||||||
|
[[params.social]]
|
||||||
|
name = "Github"
|
||||||
|
icon = "fa fa-github fa-2x"
|
||||||
|
weight = 1
|
||||||
|
url = "https://github.com/johndoe/"
|
||||||
|
[[params.social]]
|
||||||
|
name = "Gitlab"
|
||||||
|
icon = "fa fa-gitlab fa-2x"
|
||||||
|
weight = 2
|
||||||
|
url = "https://gitlab.com/johndoe/"
|
||||||
|
[[params.social]]
|
||||||
|
name = "Twitter"
|
||||||
|
icon = "fa fa-twitter fa-2x"
|
||||||
|
weight = 3
|
||||||
|
url = "https://twitter.com/johndoe/"
|
||||||
|
|
||||||
|
# Menu links
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Blog"
|
||||||
|
weight = 1
|
||||||
|
url = "posts/"
|
||||||
|
[[menu.main]]
|
||||||
|
name = "About"
|
||||||
|
weight = 2
|
||||||
|
url = "about/"
|
||||||
|
```
|
||||||
|
|
||||||
|
## Front Matter
|
||||||
|
|
||||||
|
Hugo documentation: https://gohugo.io/content-management/front-matter
|
||||||
|
|
||||||
|
This theme includes one content type:
|
||||||
|
|
||||||
|
* [Posts](#posts), useful to display blog posts
|
||||||
|
|
||||||
|
### Posts
|
||||||
|
|
||||||
|
These are the front matter variables used by `hugo-coder` theme.
|
||||||
|
|
||||||
|
| Name | Type | Required | Description | Default | Example |
|
||||||
|
| ---------------- | ------ | -------- | -------------------------------------------------- | ------- | ----------------------------------------------------------------------------- |
|
||||||
|
| tags | list | No | Add tag(s) to this post. | | `["Hugo", "Go"]` |
|
||||||
|
| categories | list | No | Add categorie(s) to this post. | | `["Hugo", "Go"]` |
|
||||||
|
| series | list | No | Add series to this post (used by OpenGraph). | | `["Theme Demo"]` |
|
||||||
|
| author | list | No | Add author to this post. | | `["John Doe"]` |
|
||||||
|
| externalLink | string | No | Link to an external post. | | `"https://github.com/luizdepra/hugo-coder/wiki"` |
|
||||||
|
| featuredImage | string | No | Link/path to add an image below post metadata. | | `"https://github.com/luizdepra/hugo-coder/blob/master/images/screenshot.png"` |
|
||||||
|
| math | bool | No | If true, MathJax is enabled only for this post. | `false` | `true` or `false` |
|
||||||
|
| katex | bool | No | If true, katex is enabled only for this post. | `false` | `true` or `false` |
|
||||||
|
| disableComments | bool | No | If true, comments are disabled. | `false` | `true` or `false` |
|
||||||
|
|
||||||
|
> "tags", "categories", "series" and "authors" are taxonomies defined in the `config.toml` file.
|
||||||
1
docs/contributing.md
Normal file
1
docs/contributing.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
WIP
|
||||||
1
docs/faq.md
Normal file
1
docs/faq.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
WIP
|
||||||
19
docs/home.md
Normal file
19
docs/home.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Welcome to the hugo-coder docs!
|
||||||
|
|
||||||
|
## Basic Usage
|
||||||
|
|
||||||
|
* [Quick Start](quick-start.md)
|
||||||
|
* [Configurations](configurations.md)
|
||||||
|
* [FAQ](faq.md)
|
||||||
|
|
||||||
|
## Extra Guides
|
||||||
|
|
||||||
|
* [Multilingual Mode](multilingual-mode.md)
|
||||||
|
* [Comment System](comment-system.md)
|
||||||
|
* [Analytics](analytics.md)
|
||||||
|
|
||||||
|
## Maintainers & Developers
|
||||||
|
|
||||||
|
* [Contributing](contributing.md)
|
||||||
|
|
||||||
|
|
||||||
73
docs/multilingual-mode.md
Normal file
73
docs/multilingual-mode.md
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
# Multilingual-Mode
|
||||||
|
|
||||||
|
* [Available Languages](#available-languages)
|
||||||
|
* [Configure Languages](#configure-languages)
|
||||||
|
* [Translation File Example](#translation-file-example)
|
||||||
|
|
||||||
|
## Available Languages
|
||||||
|
|
||||||
|
This theme supports the following languages:
|
||||||
|
|
||||||
|
- Arabic
|
||||||
|
- Bengali
|
||||||
|
- Czech
|
||||||
|
- German
|
||||||
|
- English
|
||||||
|
- Spanish
|
||||||
|
- Finnish
|
||||||
|
- French
|
||||||
|
- Hebrew
|
||||||
|
- Hindi
|
||||||
|
- Hungarian
|
||||||
|
- Italian
|
||||||
|
- Japanese
|
||||||
|
- Malay
|
||||||
|
- Dutch
|
||||||
|
- Polish
|
||||||
|
- Brazilian Portuguese
|
||||||
|
- Romanian
|
||||||
|
- Russian
|
||||||
|
- Swedish
|
||||||
|
- Slovak
|
||||||
|
- Turkish
|
||||||
|
- Simplified Chinese
|
||||||
|
- Taiwan Chinese
|
||||||
|
|
||||||
|
## Configure languages
|
||||||
|
|
||||||
|
Go to [this Hugo documentation page](https://gohugo.io/content-management/multilingual/#configure-languages) to configure one or multiple languages for your website.
|
||||||
|
|
||||||
|
## Translation File Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[category]
|
||||||
|
other = "category"
|
||||||
|
|
||||||
|
[tag]
|
||||||
|
other = "tag"
|
||||||
|
|
||||||
|
[series]
|
||||||
|
other = "series"
|
||||||
|
|
||||||
|
[author]
|
||||||
|
other = "author"
|
||||||
|
|
||||||
|
[reading_time]
|
||||||
|
one = "One-minute read"
|
||||||
|
other = "{{ .Count }}-minute read"
|
||||||
|
|
||||||
|
[page_not_found]
|
||||||
|
other = "Page Not Found"
|
||||||
|
|
||||||
|
[page_does_not_exist]
|
||||||
|
other = "Sorry, this page does not exist."
|
||||||
|
|
||||||
|
[head_back]
|
||||||
|
other = "You can head back to <a href=\"{{ . }}\">homepage</a>."
|
||||||
|
|
||||||
|
[powered_by]
|
||||||
|
other = "Powered by"
|
||||||
|
|
||||||
|
[see_also]
|
||||||
|
other = "See also in"
|
||||||
|
```
|
||||||
23
docs/quick-start.md
Normal file
23
docs/quick-start.md
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Quick Start
|
||||||
|
|
||||||
|
To start using `hugo-coder`:
|
||||||
|
|
||||||
|
1. Add the repository into your Hugo Project repository as a submodule, `git submodule add https://github.com/luizdepra/hugo-coder.git themes/coder`.
|
||||||
|
2. Configure your `config.toml`. You can either use the [this minimal configuration](Configurations#complete-example) as a base, or look for a complete explanation about all configurations [here](https://github.com/luizdepra/hugo-coder/wiki/Configurations). The [`config.toml`](https://github.com/luizdepra/hugo-coder/blob/master/exampleSite/config.toml) inside the [exampleSite](https://github.com/luizdepra/hugo-coder/tree/master/exampleSite) from the `exampleSite` is also a good reference.
|
||||||
|
3. Build your site with `hugo serve` and see the result at `http://localhost:1313/`.
|
||||||
|
|
||||||
|
If you just want to test this theme, go to [this page](https://themes.gohugo.io/theme/hugo-coder/).
|
||||||
|
|
||||||
|
You can also clone or download it, then run these commands:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/luizdepra/hugo-coder.git
|
||||||
|
|
||||||
|
cd hugo-coder
|
||||||
|
|
||||||
|
make demo
|
||||||
|
```
|
||||||
|
|
||||||
|
You'll see the result at [http://localhost:1313/](http://localhost:1313/).
|
||||||
|
|
||||||
|
> These last two methods don't use the same content directory, the first one leads to 404 pages for some pages. More info [here](https://github.com/gohugoio/hugoThemes#adding-a-theme-to-the-list).
|
||||||
@@ -1,24 +1,27 @@
|
|||||||
baseURL = "http://www.example.com"
|
baseURL = "http://www.example.com"
|
||||||
title = "johndoe"
|
title = "johndoe"
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
theme = "hugo-coder-timeline"
|
theme = "hugo-coder-timeline"
|
||||||
|
|
||||||
|
=======
|
||||||
|
theme = "hugo-coder-timeline"
|
||||||
|
>>>>>>> luizdepra-m
|
||||||
languageCode = "en"
|
languageCode = "en"
|
||||||
defaultContentLanguage = "en"
|
defaultContentLanguage = "en"
|
||||||
|
|
||||||
paginate = 20
|
paginate = 20
|
||||||
|
pygmentsStyle = "bw"
|
||||||
pygmentsStyle = "b2"
|
|
||||||
pygmentsCodeFences = true
|
pygmentsCodeFences = true
|
||||||
pygmentsCodeFencesGuessSyntax = true
|
pygmentsCodeFencesGuessSyntax = true
|
||||||
|
enableEmoji = true
|
||||||
disqusShortname = "yourdiscussshortname"
|
# Enable Disqus comments
|
||||||
|
# disqusShortname = "yourdiscussshortname"
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
author = "John Doe"
|
author = "John Doe"
|
||||||
description = "John Doe's personal website"
|
description = "John Doe's personal website"
|
||||||
keywords = "blog,developer,personal"
|
keywords = "blog,developer,personal"
|
||||||
info = "Full Stack DevOps and Magician"
|
info = ["Full Stack DevOps", "Magician"]
|
||||||
avatarURL = "images/avatar.jpg"
|
avatarURL = "images/avatar.jpg"
|
||||||
#gravatar = "john.doe@example.com"
|
#gravatar = "john.doe@example.com"
|
||||||
footerContent = "Enter a text here."
|
footerContent = "Enter a text here."
|
||||||
@@ -64,40 +67,36 @@ disqusShortname = "yourdiscussshortname"
|
|||||||
timelineType="timeline" # Which type of posts to take (here everything from folder timeline/)
|
timelineType="timeline" # Which type of posts to take (here everything from folder timeline/)
|
||||||
|
|
||||||
# If you want to use fathom(https://usefathom.com) for analytics, add this section
|
# If you want to use fathom(https://usefathom.com) for analytics, add this section
|
||||||
[params.fathomAnalytics]
|
# [params.fathomAnalytics]
|
||||||
siteID = "ABCDE"
|
# siteID = "ABCDE"
|
||||||
# Default value is cdn.usefathom.com, overwrite this if you are self-hosting
|
# serverURL = "analytics.example.com" # Default value is cdn.usefathom.com, overwrite this if you are self-hosting
|
||||||
serverURL = "analytics.example.com"
|
|
||||||
|
|
||||||
# If you want to use plausible(https://plausible.io) for analytics, add this section
|
# If you want to use plausible(https://plausible.io) for analytics, add this section
|
||||||
[params.plausibleAnalytics]
|
# [params.plausibleAnalytics]
|
||||||
domain = "example.com"
|
# domain = "example.com"
|
||||||
# Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain
|
# serverURL = "analytics.example.com" # Default value is plausible.io, overwrite this if you are self-hosting or using a custom domain
|
||||||
serverURL = "analytics.example.com"
|
|
||||||
|
|
||||||
# If you want to use goatcounter(https://goatcounter.com) for analytics, add this section
|
# If you want to use goatcounter(https://goatcounter.com) for analytics, add this section
|
||||||
[params.goatCounter]
|
# [params.goatCounter]
|
||||||
code = "code"
|
# code = "code"
|
||||||
|
|
||||||
# If you want to use Cloudflare Web Analytics(https://cloudflare.com) for analytics, add this section
|
# If you want to use Cloudflare Web Analytics(https://cloudflare.com) for analytics, add this section
|
||||||
[params.cloudflare]
|
# [params.cloudflare]
|
||||||
token = "token"
|
# token = "token"
|
||||||
|
|
||||||
# If you want to use Matomo(https://matomo.org) for analytics, add this section
|
# If you want to use Matomo(https://matomo.org) for analytics, add this section
|
||||||
[params.matomo]
|
# [params.matomo]
|
||||||
# Default value is "1", overwrite this if you are cloud-hosting
|
# siteID = "ABCDE" # Default value is "1", overwrite this if you are cloud-hosting
|
||||||
siteID = "ABCDE"
|
# serverURL = "analytics.example.com" # For cloud-hosting, use provided URL, e.g. example.matomo.cloud
|
||||||
# For cloud-hosting, use provided URL, e.g. example.matomo.cloud
|
|
||||||
serverURL = "analytics.example.com"
|
# If you want to use Google Tag Manager(https://analytics.google.com/) for analytics, add this section
|
||||||
|
# [params.googleTagManager]
|
||||||
|
# id = "gid"
|
||||||
|
|
||||||
# If you want to implement a Content-Security-Policy, add this section
|
# If you want to implement a Content-Security-Policy, add this section
|
||||||
[params.csp]
|
[params.csp]
|
||||||
childsrc = ["'self'"]
|
childsrc = ["'self'"]
|
||||||
fontsrc = [
|
fontsrc = ["'self'", "https://fonts.gstatic.com", "https://cdn.jsdelivr.net/"]
|
||||||
"'self'",
|
|
||||||
"https://fonts.gstatic.com",
|
|
||||||
"https://cdn.jsdelivr.net/"
|
|
||||||
]
|
|
||||||
formaction = ["'self'"]
|
formaction = ["'self'"]
|
||||||
framesrc = ["'self'"]
|
framesrc = ["'self'"]
|
||||||
imgsrc = ["'self'"]
|
imgsrc = ["'self'"]
|
||||||
@@ -111,9 +110,12 @@ disqusShortname = "yourdiscussshortname"
|
|||||||
scriptsrc = [
|
scriptsrc = [
|
||||||
"'self'",
|
"'self'",
|
||||||
"'unsafe-inline'",
|
"'unsafe-inline'",
|
||||||
"https://www.google-analytics.com"
|
"https://www.google-analytics.com",
|
||||||
|
"https://cdn.jsdelivr.net/"
|
||||||
]
|
]
|
||||||
prefetchsrc = ["'self'"]
|
prefetchsrc = ["'self'"]
|
||||||
|
# connect-src directive – defines valid targets for to XMLHttpRequest (AJAX), WebSockets or EventSource
|
||||||
|
connectsrc = ["'self'", "https://www.google-analytics.com"]
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
category = "categories"
|
category = "categories"
|
||||||
@@ -123,42 +125,44 @@ disqusShortname = "yourdiscussshortname"
|
|||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Github"
|
name = "Github"
|
||||||
icon = "fa fa-github"
|
icon = "fa fa-2x fa-github"
|
||||||
weight = 1
|
weight = 1
|
||||||
url = "https://github.com/johndoe/"
|
url = "https://github.com/johndoe/"
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Gitlab"
|
name = "Gitlab"
|
||||||
icon = "fa fa-gitlab"
|
icon = "fa fa-2x fa-gitlab"
|
||||||
weight = 2
|
weight = 2
|
||||||
url = "https://gitlab.com/johndoe/"
|
url = "https://gitlab.com/johndoe/"
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Twitter"
|
name = "Twitter"
|
||||||
icon = "fa fa-twitter"
|
icon = "fa fa-2x fa-twitter"
|
||||||
weight = 3
|
weight = 3
|
||||||
url = "https://twitter.com/johndoe/"
|
url = "https://twitter.com/johndoe/"
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "LinkedIn"
|
name = "LinkedIn"
|
||||||
icon = "fa fa-linkedin"
|
icon = "fa fa-2x fa-linkedin"
|
||||||
weight = 4
|
weight = 4
|
||||||
url = "https://www.linkedin.com/in/johndoe/"
|
url = "https://www.linkedin.com/in/johndoe/"
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Medium"
|
name = "Medium"
|
||||||
icon = "fa fa-medium"
|
icon = "fa fa-2x fa-medium"
|
||||||
weight = 5
|
weight = 5
|
||||||
url = "https://medium.com/@johndoe"
|
url = "https://medium.com/@johndoe"
|
||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "RSS"
|
name = "RSS"
|
||||||
icon = "fa fa-rss"
|
icon = "fa fa-2x fa-rss"
|
||||||
weight = 6
|
weight = 6
|
||||||
url = "https://myhugosite.com/index.xml"
|
url = "https://myhugosite.com/index.xml"
|
||||||
rel = "alternate"
|
rel = "alternate"
|
||||||
type = "application/rss+xml"
|
type = "application/rss+xml"
|
||||||
|
|
||||||
|
|
||||||
[languages]
|
|
||||||
[languages.en]
|
[languages.en]
|
||||||
languageName = "English"
|
languageName = ":uk:"
|
||||||
[languages.en.menu]
|
|
||||||
|
|
||||||
[[languages.en.menu.main]]
|
[[languages.en.menu.main]]
|
||||||
name = "About"
|
name = "About"
|
||||||
@@ -180,19 +184,15 @@ disqusShortname = "yourdiscussshortname"
|
|||||||
weight = 5
|
weight = 5
|
||||||
url = "contact/"
|
url = "contact/"
|
||||||
|
|
||||||
|
|
||||||
[languages.pt-br]
|
[languages.pt-br]
|
||||||
languageName = "Português"
|
languageName = ":brazil:"
|
||||||
title = "João Ninguém"
|
title = "João Ninguém"
|
||||||
timelineTitle = "Meus Artigos" # Language Specific timeline title
|
|
||||||
[languages.pt-br.params]
|
[languages.pt-br.params]
|
||||||
author = "João Ninguém"
|
author = "João Ninguém"
|
||||||
info = "Full Stack DevOps e Mágico"
|
info = "Full Stack DevOps e Mágico"
|
||||||
description = "Sítio pessoal de João Ninguém"
|
description = "Sítio pessoal de João Ninguém"
|
||||||
keywords = "blog,desenvolvedor,pessoal"
|
keywords = "blog,desenvolvedor,pessoal"
|
||||||
footerContent = "Coloque algum texto aqui."
|
|
||||||
|
|
||||||
[languages.pt-br.menu]
|
|
||||||
|
|
||||||
[[languages.pt-br.menu.main]]
|
[[languages.pt-br.menu.main]]
|
||||||
name = "Sobre"
|
name = "Sobre"
|
||||||
|
|||||||
@@ -1,29 +1,25 @@
|
|||||||
+++
|
+++
|
||||||
title = "About Hugo"
|
title = "About"
|
||||||
slug = "about"
|
description = "Hugo, the world's fastest framework for building websites"
|
||||||
|
date = "2019-02-28"
|
||||||
|
aliases = ["about-us", "about-hugo", "contact"]
|
||||||
|
author = "Hugo Authors"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Hugo is a static site engine written in Go.
|
Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
|
||||||
|
|
||||||
|
Hugo makes use of a variety of open source projects including:
|
||||||
|
|
||||||
It makes use of a variety of open source projects including:
|
* https://github.com/yuin/goldmark
|
||||||
|
* https://github.com/alecthomas/chroma
|
||||||
|
* https://github.com/muesli/smartcrop
|
||||||
|
* https://github.com/spf13/cobra
|
||||||
|
* https://github.com/spf13/viper
|
||||||
|
|
||||||
* [Cobra](https://github.com/spf13/cobra)
|
Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
|
||||||
* [Viper](https://github.com/spf13/viper)
|
|
||||||
* [J Walter Weatherman](https://github.com/spf13/jWalterWeatherman)
|
|
||||||
* [Cast](https://github.com/spf13/cast)
|
|
||||||
|
|
||||||
Learn more and contribute on [GitHub](https://github.com/spf13).
|
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
|
||||||
|
|
||||||
## Setup
|
Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
|
||||||
|
|
||||||
Some fun facts about [Hugo](http://gohugo.io/):
|
Learn more and contribute on [GitHub](https://github.com/gohugoio).
|
||||||
|
|
||||||
* Built in [Go](http://golang.org/)
|
|
||||||
* Loosely inspired by [Jekyll](http://jekyllrb.com/)
|
|
||||||
* Primarily developed by [spf13](http://spf13.com/) on the train while commuting to and from Manhattan.
|
|
||||||
* Coded in [Vim](http://vim.org) using [spf13-vim](http://vim.spf13.com/)
|
|
||||||
|
|
||||||
Have questions or suggestions? Feel free to [open an issue on GitHub](https://github.com/spf13/hugo/issues/new) or [ask me on Twitter](https://twitter.com/spf13).
|
|
||||||
|
|
||||||
Thanks for reading!
|
|
||||||
|
|||||||
@@ -1,6 +1,25 @@
|
|||||||
+++
|
+++
|
||||||
title = "Sobre Hugo"
|
title = "About"
|
||||||
slug = "about"
|
description = "Hugo, the world's fastest framework for building websites"
|
||||||
|
date = "2019-02-28"
|
||||||
|
aliases = ["about-us", "about-hugo", "contact"]
|
||||||
|
author = "Hugo Authors"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Em construção... Aguarde!
|
Escrito em Go, Hugo é um gerador de sites estáticos de código aberto disponível sobre a licença [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) O Hugo suporta TOML, YAML e JSON como arquivos de dados, Markdown e HTML como arquivos de conteúdo, e usa shortcodes para adicionar conteúdos ricos. Outras funcionalidades notaveis são taxonomias, modo multilingual, processamento de imagens, formatos de saída customizaveis, minificação de HTML/CSS/JS e suporte a fluxos SASS/SCSS.
|
||||||
|
|
||||||
|
O Hugo faz o uso de vários projetos de código aberto incluíndo:
|
||||||
|
|
||||||
|
* https://github.com/yuin/goldmark
|
||||||
|
* https://github.com/alecthomas/chroma
|
||||||
|
* https://github.com/muesli/smartcrop
|
||||||
|
* https://github.com/spf13/cobra
|
||||||
|
* https://github.com/spf13/viper
|
||||||
|
|
||||||
|
O Hugo é ideal para blogs, sites corporativos, protfólio criativos, revistas online, aplicações de página única ou até sites com milhares de páginas.
|
||||||
|
|
||||||
|
O Hugo é para pessoas que querem cuidar do seu próprio site sem se preocupar com a configuração ambientes complicados, dependências e bancos de dados.
|
||||||
|
|
||||||
|
Sites contru;idos com Hugo são extremamente rápidos, seguros e podem ser implantados em qualquer lugar, incluíndo AWS, GitHub Pages, Heroku, Netlify e outros provedores de hospedagem.
|
||||||
|
|
||||||
|
Saiba mais e contribua em [GitHub](https://github.com/gohugoio).
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,10 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2018-12-31"
|
|
||||||
title = "Dummy"
|
|
||||||
slug = "dummy"
|
|
||||||
tags = ["hugo", "i18n"]
|
|
||||||
categories = ["blog"]
|
|
||||||
authors = ["Translation test"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
Nada para ver aqui!
|
|
||||||
46
exampleSite/content/posts/emoji-support.md
Normal file
46
exampleSite/content/posts/emoji-support.md
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Emoji Support"
|
||||||
|
date = "2019-03-05"
|
||||||
|
description = "Guide to emoji usage in Hugo"
|
||||||
|
tags = [
|
||||||
|
"emoji",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Emoji can be enabled in a Hugo project in a number of ways.
|
||||||
|
<!--more-->
|
||||||
|
The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
|
||||||
|
|
||||||
|
To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
|
||||||
|
|
||||||
|
<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
|
||||||
|
|
||||||
|
{{< highlight html >}}
|
||||||
|
.emoji {
|
||||||
|
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||||
|
}
|
||||||
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
{{< css.inline >}}
|
||||||
|
<style>
|
||||||
|
.emojify {
|
||||||
|
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||||
|
font-size: 2rem;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
@media screen and (max-width:650px) {
|
||||||
|
.nowrap {
|
||||||
|
display: block;
|
||||||
|
margin: 25px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{{< /css.inline >}}
|
||||||
46
exampleSite/content/posts/emoji-support.pt-br.md
Normal file
46
exampleSite/content/posts/emoji-support.pt-br.md
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Suporte a Emojis"
|
||||||
|
date = "2019-03-05"
|
||||||
|
description = "Um guia de utilização de emojis com Hugo"
|
||||||
|
tags = [
|
||||||
|
"emoji",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Emojis podem ser ativados em um projeto Hugo de diversar formas.
|
||||||
|
<!--more-->
|
||||||
|
A função [`emojify`](https://gohugo.io/functions/emojify/) pode ser chamada diretamente nos templates ou com [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
|
||||||
|
|
||||||
|
Para ativar os emojis globalmente, aplique `enableEmoji` com o valor `true` na [configuração](https://gohugo.io/getting-started/configuration/) do seu site e então você poderá adicionar códigos de emoji diretamente nos arquivos de conteúdo. Por exemplo:
|
||||||
|
|
||||||
|
<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
O [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) é uma referência útil para identificar códigos de emojis.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
**Nota:** Os passos anteriores ativam os caractéres e sequências de emoji do Padrão Unicode no Hugo, porém a renderização desses glifos depende do navegador e plataforma utilizada. Para escolher o estilo dos emojis você pode tanto usar um font de emoji de terceiros ou uma lista de fontes. Por exemplo:
|
||||||
|
|
||||||
|
{{< highlight html >}}
|
||||||
|
.emoji {
|
||||||
|
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||||
|
}
|
||||||
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
{{< css.inline >}}
|
||||||
|
<style>
|
||||||
|
.emojify {
|
||||||
|
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
||||||
|
font-size: 2rem;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
@media screen and (max-width:650px) {
|
||||||
|
.nowrap {
|
||||||
|
display: block;
|
||||||
|
margin: 25px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{{< /css.inline >}}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
+++
|
+++
|
||||||
date = "2019-01-17"
|
author = "Hugo Authors"
|
||||||
title = "Hugo coder wiki"
|
date = "2019-03-04"
|
||||||
|
title = "External Page: Hugo Coder Wiki"
|
||||||
slug = "hugo-coder-wiki"
|
slug = "hugo-coder-wiki"
|
||||||
tags = [
|
tags = [
|
||||||
"hugo",
|
"hugo",
|
||||||
@@ -11,6 +12,4 @@ categories = [
|
|||||||
"Development",
|
"Development",
|
||||||
]
|
]
|
||||||
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
|
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
|
||||||
series = ["Hugo"]
|
|
||||||
authors = ["External link test"]
|
|
||||||
+++
|
+++
|
||||||
|
|||||||
15
exampleSite/content/posts/external-post.pt-br.md
Normal file
15
exampleSite/content/posts/external-post.pt-br.md
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
date = "2019-03-04"
|
||||||
|
title = "Página Externa: Wiki Hugo Coder"
|
||||||
|
slug = "hugo-coder-wiki"
|
||||||
|
tags = [
|
||||||
|
"hugo",
|
||||||
|
"development",
|
||||||
|
"themes"
|
||||||
|
]
|
||||||
|
categories = [
|
||||||
|
"Development",
|
||||||
|
]
|
||||||
|
externalLink = "https://github.com/luizdepra/hugo-coder/wiki"
|
||||||
|
+++
|
||||||
@@ -1,345 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2014-04-02"
|
|
||||||
title = "(Hu)go Template Primer"
|
|
||||||
slug = "hugo-template-primer"
|
|
||||||
tags = [
|
|
||||||
"go",
|
|
||||||
"golang",
|
|
||||||
"templates",
|
|
||||||
"themes",
|
|
||||||
"development",
|
|
||||||
]
|
|
||||||
categories = [
|
|
||||||
"Development",
|
|
||||||
"golang",
|
|
||||||
]
|
|
||||||
series = ["Getting Started", "Hugo"]
|
|
||||||
authors = ["Jane Smith"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for
|
|
||||||
its template engine. It is an extremely lightweight engine that provides a very
|
|
||||||
small amount of logic. In our experience that it is just the right amount of
|
|
||||||
logic to be able to create a good static website. If you have used other
|
|
||||||
template systems from different languages or frameworks you will find a lot of
|
|
||||||
similarities in go templates.
|
|
||||||
|
|
||||||
This document is a brief primer on using go templates. The [go docs][gohtmltemplate]
|
|
||||||
provide more details.
|
|
||||||
|
|
||||||
## Introduction to Go Templates
|
|
||||||
|
|
||||||
Go templates provide an extremely simple template language. It adheres to the
|
|
||||||
belief that only the most basic of logic belongs in the template or view layer.
|
|
||||||
One consequence of this simplicity is that go templates parse very quickly.
|
|
||||||
|
|
||||||
A unique characteristic of go templates is they are content aware. Variables and
|
|
||||||
content will be sanitized depending on the context of where they are used. More
|
|
||||||
details can be found in the [go docs][gohtmltemplate].
|
|
||||||
|
|
||||||
## Basic Syntax
|
|
||||||
|
|
||||||
Go lang templates are html files with the addition of variables and
|
|
||||||
functions.
|
|
||||||
|
|
||||||
**Go variables and functions are accessible within {{ }}**
|
|
||||||
|
|
||||||
Accessing a predefined variable "foo":
|
|
||||||
|
|
||||||
{{ foo }}
|
|
||||||
|
|
||||||
**Parameters are separated using spaces**
|
|
||||||
|
|
||||||
Calling the add function with input of 1, 2:
|
|
||||||
|
|
||||||
{{ add 1 2 }}
|
|
||||||
|
|
||||||
**Methods and fields are accessed via dot notation**
|
|
||||||
|
|
||||||
Accessing the Page Parameter "bar"
|
|
||||||
|
|
||||||
{{ .Params.bar }}
|
|
||||||
|
|
||||||
**Parentheses can be used to group items together**
|
|
||||||
|
|
||||||
{{ if or (isset .Params "alt") (isset .Params "caption") }} Caption {{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
## Variables
|
|
||||||
|
|
||||||
Each go template has a struct (object) made available to it. In hugo each
|
|
||||||
template is passed either a page or a node struct depending on which type of
|
|
||||||
page you are rendering. More details are available on the
|
|
||||||
[variables](/layout/variables) page.
|
|
||||||
|
|
||||||
A variable is accessed by referencing the variable name.
|
|
||||||
|
|
||||||
<title>{{ .Title }}</title>
|
|
||||||
|
|
||||||
Variables can also be defined and referenced.
|
|
||||||
|
|
||||||
{{ $address := "123 Main St."}}
|
|
||||||
{{ $address }}
|
|
||||||
|
|
||||||
|
|
||||||
## Functions
|
|
||||||
|
|
||||||
Go template ship with a few functions which provide basic functionality. The go
|
|
||||||
template system also provides a mechanism for applications to extend the
|
|
||||||
available functions with their own. [Hugo template
|
|
||||||
functions](/layout/functions) provide some additional functionality we believe
|
|
||||||
are useful for building websites. Functions are called by using their name
|
|
||||||
followed by the required parameters separated by spaces. Template
|
|
||||||
functions cannot be added without recompiling hugo.
|
|
||||||
|
|
||||||
**Example:**
|
|
||||||
|
|
||||||
{{ add 1 2 }}
|
|
||||||
|
|
||||||
## Includes
|
|
||||||
|
|
||||||
When including another template you will pass to it the data it will be
|
|
||||||
able to access. To pass along the current context please remember to
|
|
||||||
include a trailing dot. The templates location will always be starting at
|
|
||||||
the /layout/ directory within Hugo.
|
|
||||||
|
|
||||||
**Example:**
|
|
||||||
|
|
||||||
{{ template "chrome/header.html" . }}
|
|
||||||
|
|
||||||
|
|
||||||
## Logic
|
|
||||||
|
|
||||||
Go templates provide the most basic iteration and conditional logic.
|
|
||||||
|
|
||||||
### Iteration
|
|
||||||
|
|
||||||
Just like in go, the go templates make heavy use of range to iterate over
|
|
||||||
a map, array or slice. The following are different examples of how to use
|
|
||||||
range.
|
|
||||||
|
|
||||||
**Example 1: Using Context**
|
|
||||||
|
|
||||||
{{ range array }}
|
|
||||||
{{ . }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
**Example 2: Declaring value variable name**
|
|
||||||
|
|
||||||
{{range $element := array}}
|
|
||||||
{{ $element }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
**Example 2: Declaring key and value variable name**
|
|
||||||
|
|
||||||
{{range $index, $element := array}}
|
|
||||||
{{ $index }}
|
|
||||||
{{ $element }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
### Conditionals
|
|
||||||
|
|
||||||
If, else, with, or, & and provide the framework for handling conditional
|
|
||||||
logic in Go Templates. Like range, each statement is closed with `end`.
|
|
||||||
|
|
||||||
|
|
||||||
Go Templates treat the following values as false:
|
|
||||||
|
|
||||||
* false
|
|
||||||
* 0
|
|
||||||
* any array, slice, map, or string of length zero
|
|
||||||
|
|
||||||
**Example 1: If**
|
|
||||||
|
|
||||||
{{ if isset .Params "title" }}<h4>{{ index .Params "title" }}</h4>{{ end }}
|
|
||||||
|
|
||||||
**Example 2: If -> Else**
|
|
||||||
|
|
||||||
{{ if isset .Params "alt" }}
|
|
||||||
{{ index .Params "alt" }}
|
|
||||||
{{else}}
|
|
||||||
{{ index .Params "caption" }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
**Example 3: And & Or**
|
|
||||||
|
|
||||||
{{ if and (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
|
|
||||||
|
|
||||||
**Example 4: With**
|
|
||||||
|
|
||||||
An alternative way of writing "if" and then referencing the same value
|
|
||||||
is to use "with" instead. With rebinds the context `.` within its scope,
|
|
||||||
and skips the block if the variable is absent.
|
|
||||||
|
|
||||||
The first example above could be simplified as:
|
|
||||||
|
|
||||||
{{ with .Params.title }}<h4>{{ . }}</h4>{{ end }}
|
|
||||||
|
|
||||||
**Example 5: If -> Else If**
|
|
||||||
|
|
||||||
{{ if isset .Params "alt" }}
|
|
||||||
{{ index .Params "alt" }}
|
|
||||||
{{ else if isset .Params "caption" }}
|
|
||||||
{{ index .Params "caption" }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
## Pipes
|
|
||||||
|
|
||||||
One of the most powerful components of go templates is the ability to
|
|
||||||
stack actions one after another. This is done by using pipes. Borrowed
|
|
||||||
from unix pipes, the concept is simple, each pipeline's output becomes the
|
|
||||||
input of the following pipe.
|
|
||||||
|
|
||||||
Because of the very simple syntax of go templates, the pipe is essential
|
|
||||||
to being able to chain together function calls. One limitation of the
|
|
||||||
pipes is that they only can work with a single value and that value
|
|
||||||
becomes the last parameter of the next pipeline.
|
|
||||||
|
|
||||||
A few simple examples should help convey how to use the pipe.
|
|
||||||
|
|
||||||
**Example 1 :**
|
|
||||||
|
|
||||||
{{ if eq 1 1 }} Same {{ end }}
|
|
||||||
|
|
||||||
is the same as
|
|
||||||
|
|
||||||
{{ eq 1 1 | if }} Same {{ end }}
|
|
||||||
|
|
||||||
It does look odd to place the if at the end, but it does provide a good
|
|
||||||
illustration of how to use the pipes.
|
|
||||||
|
|
||||||
**Example 2 :**
|
|
||||||
|
|
||||||
{{ index .Params "disqus_url" | html }}
|
|
||||||
|
|
||||||
Access the page parameter called "disqus_url" and escape the HTML.
|
|
||||||
|
|
||||||
**Example 3 :**
|
|
||||||
|
|
||||||
{{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
|
|
||||||
Stuff Here
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
Could be rewritten as
|
|
||||||
|
|
||||||
{{ isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" | if }}
|
|
||||||
Stuff Here
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
## Context (aka. the dot)
|
|
||||||
|
|
||||||
The most easily overlooked concept to understand about go templates is that {{ . }}
|
|
||||||
always refers to the current context. In the top level of your template this
|
|
||||||
will be the data set made available to it. Inside of a iteration it will have
|
|
||||||
the value of the current item. When inside of a loop the context has changed. .
|
|
||||||
will no longer refer to the data available to the entire page. If you need to
|
|
||||||
access this from within the loop you will likely want to set it to a variable
|
|
||||||
instead of depending on the context.
|
|
||||||
|
|
||||||
**Example:**
|
|
||||||
|
|
||||||
{{ $title := .Site.Title }}
|
|
||||||
{{ range .Params.tags }}
|
|
||||||
<li> <a href="{{ $baseURL }}/tags/{{ . | urlize }}">{{ . }}</a> - {{ $title }} </li>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
Notice how once we have entered the loop the value of {{ . }} has changed. We
|
|
||||||
have defined a variable outside of the loop so we have access to it from within
|
|
||||||
the loop.
|
|
||||||
|
|
||||||
# Hugo Parameters
|
|
||||||
|
|
||||||
Hugo provides the option of passing values to the template language
|
|
||||||
through the site configuration (for sitewide values), or through the meta
|
|
||||||
data of each specific piece of content. You can define any values of any
|
|
||||||
type (supported by your front matter/config format) and use them however
|
|
||||||
you want to inside of your templates.
|
|
||||||
|
|
||||||
|
|
||||||
## Using Content (page) Parameters
|
|
||||||
|
|
||||||
In each piece of content you can provide variables to be used by the
|
|
||||||
templates. This happens in the [front matter](/content/front-matter).
|
|
||||||
|
|
||||||
An example of this is used in this documentation site. Most of the pages
|
|
||||||
benefit from having the table of contents provided. Sometimes the TOC just
|
|
||||||
doesn't make a lot of sense. We've defined a variable in our front matter
|
|
||||||
of some pages to turn off the TOC from being displayed.
|
|
||||||
|
|
||||||
Here is the example front matter:
|
|
||||||
|
|
||||||
```
|
|
||||||
---
|
|
||||||
title: "Permalinks"
|
|
||||||
date: "2013-11-18"
|
|
||||||
aliases:
|
|
||||||
- "/doc/permalinks/"
|
|
||||||
groups: ["extras"]
|
|
||||||
groups_weight: 30
|
|
||||||
notoc: true
|
|
||||||
---
|
|
||||||
```
|
|
||||||
|
|
||||||
Here is the corresponding code inside of the template:
|
|
||||||
|
|
||||||
{{ if not .Params.notoc }}
|
|
||||||
<div id="toc" class="well col-md-4 col-sm-6">
|
|
||||||
{{ .TableOfContents }}
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Using Site (config) Parameters
|
|
||||||
In your top-level configuration file (eg, `config.yaml`) you can define site
|
|
||||||
parameters, which are values which will be available to you in chrome.
|
|
||||||
|
|
||||||
For instance, you might declare:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
params:
|
|
||||||
CopyrightHTML: "Copyright © 2013 John Doe. All Rights Reserved."
|
|
||||||
TwitterUser: "spf13"
|
|
||||||
SidebarRecentLimit: 5
|
|
||||||
```
|
|
||||||
|
|
||||||
Within a footer layout, you might then declare a `<footer>` which is only
|
|
||||||
provided if the `CopyrightHTML` parameter is provided, and if it is given,
|
|
||||||
you would declare it to be HTML-safe, so that the HTML entity is not escaped
|
|
||||||
again. This would let you easily update just your top-level config file each
|
|
||||||
January 1st, instead of hunting through your templates.
|
|
||||||
|
|
||||||
```
|
|
||||||
{{if .Site.Params.CopyrightHTML}}<footer>
|
|
||||||
<div class="text-center">{{.Site.Params.CopyrightHTML | safeHtml}}</div>
|
|
||||||
</footer>{{end}}
|
|
||||||
```
|
|
||||||
|
|
||||||
An alternative way of writing the "if" and then referencing the same value
|
|
||||||
is to use "with" instead. With rebinds the context `.` within its scope,
|
|
||||||
and skips the block if the variable is absent:
|
|
||||||
|
|
||||||
```
|
|
||||||
{{with .Site.Params.TwitterUser}}<span class="twitter">
|
|
||||||
<a href="https://twitter.com/{{.}}" rel="author">
|
|
||||||
<img src="/images/twitter.png" width="48" height="48" title="Twitter: {{.}}"
|
|
||||||
alt="Twitter"></a>
|
|
||||||
</span>{{end}}
|
|
||||||
```
|
|
||||||
|
|
||||||
Finally, if you want to pull "magic constants" out of your layouts, you can do
|
|
||||||
so, such as in this example:
|
|
||||||
|
|
||||||
```
|
|
||||||
<nav class="recent">
|
|
||||||
<h1>Recent Posts</h1>
|
|
||||||
<ul>{{range first .Site.Params.SidebarRecentLimit .Site.Recent}}
|
|
||||||
<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
|
|
||||||
{{end}}</ul>
|
|
||||||
</nav>
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
[go]: <http://golang.org/>
|
|
||||||
[gohtmltemplate]: <http://golang.org/pkg/html/template/>
|
|
||||||
133
exampleSite/content/posts/html-and-css-only-tabs.md
Normal file
133
exampleSite/content/posts/html-and-css-only-tabs.md
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "HTML and CSS only tabs"
|
||||||
|
date = "2022-05-15"
|
||||||
|
description = "Sample article showcasing shortcodes for HTML/CSS only tabs"
|
||||||
|
tags = [
|
||||||
|
"markdown",
|
||||||
|
"css",
|
||||||
|
"html",
|
||||||
|
]
|
||||||
|
categories = [
|
||||||
|
"themes",
|
||||||
|
"syntax",
|
||||||
|
]
|
||||||
|
series = ["Themes Guide"]
|
||||||
|
aliases = ["migrate-from-jekyl"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
## Basic shortcodes
|
||||||
|
|
||||||
|
The following content:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
{{</* tabgroup */>}}
|
||||||
|
{{</* tab name="Hello" */>}}
|
||||||
|
Hello World!
|
||||||
|
{{</* /tab */>}}
|
||||||
|
|
||||||
|
{{</* tab name="Goodbye" */>}}
|
||||||
|
Goodbye Everybody!
|
||||||
|
{{</* /tab */>}}
|
||||||
|
{{</* /tabgroup */>}}
|
||||||
|
```
|
||||||
|
|
||||||
|
Will generate:
|
||||||
|
|
||||||
|
{{< tabgroup >}}
|
||||||
|
{{< tab name="Hello" >}}
|
||||||
|
Hello World!
|
||||||
|
{{< /tab >}}
|
||||||
|
|
||||||
|
{{< tab name="Goodbye" >}}
|
||||||
|
Goodbye Everybody!
|
||||||
|
{{< /tab >}}
|
||||||
|
{{< /tabgroup >}}
|
||||||
|
|
||||||
|
## Right alighment
|
||||||
|
|
||||||
|
You can also align the tabs to the right:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
{{</* tabgroup align="right" */>}}
|
||||||
|
{{</* tab name="Hello" */>}}
|
||||||
|
Hello World!
|
||||||
|
{{</* /tab */>}}
|
||||||
|
|
||||||
|
{{</* tab name="Goodbye" */>}}
|
||||||
|
Goodbye Everybody!
|
||||||
|
{{</* /tab */>}}
|
||||||
|
{{</* /tabgroup */>}}
|
||||||
|
```
|
||||||
|
|
||||||
|
Giving you this look:
|
||||||
|
|
||||||
|
{{< tabgroup align="right" >}}
|
||||||
|
{{< tab name="Hello" >}}
|
||||||
|
Hello World!
|
||||||
|
{{< /tab >}}
|
||||||
|
|
||||||
|
{{< tab name="Goodbye" >}}
|
||||||
|
Goodbye Everybody!
|
||||||
|
{{< /tab >}}
|
||||||
|
{{< /tabgroup >}}
|
||||||
|
|
||||||
|
## Markdown content
|
||||||
|
|
||||||
|
Any valid markdown can be used inside the tab:
|
||||||
|
|
||||||
|
~~~markdown
|
||||||
|
{{</* tabgroup align="right" style="code" */>}}
|
||||||
|
{{</* tab name="Ruby" */>}}
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
puts 'Hello'
|
||||||
|
```
|
||||||
|
|
||||||
|
{{</* /tab */>}}
|
||||||
|
{{</* tab name="Python" */>}}
|
||||||
|
|
||||||
|
```python
|
||||||
|
print('Hello')
|
||||||
|
```
|
||||||
|
|
||||||
|
{{</* /tab */>}}
|
||||||
|
{{</* tab name="JavaScript" */>}}
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log('Hello')
|
||||||
|
```
|
||||||
|
|
||||||
|
{{</* /tab */>}}
|
||||||
|
{{</* /tabgroup */>}}
|
||||||
|
|
||||||
|
~~~
|
||||||
|
|
||||||
|
And you get this lovely content:
|
||||||
|
|
||||||
|
{{< tabgroup align="right" style="code" >}}
|
||||||
|
{{< tab name="Ruby" >}}
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
puts 'Hello'
|
||||||
|
```
|
||||||
|
|
||||||
|
{{< /tab >}}
|
||||||
|
{{< tab name="Python" >}}
|
||||||
|
|
||||||
|
```python
|
||||||
|
print('Hello')
|
||||||
|
```
|
||||||
|
|
||||||
|
{{< /tab >}}
|
||||||
|
{{< tab name="JavaScript" >}}
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log('Hello')
|
||||||
|
```
|
||||||
|
|
||||||
|
{{< /tab >}}
|
||||||
|
{{< /tabgroup >}}
|
||||||
|
|
||||||
|
In this case `style="code"` makes it look a little nicer for scenarios where
|
||||||
|
your content purely a code block.
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2014-04-02"
|
|
||||||
title = "Getting Started with Hugo"
|
|
||||||
tags = [
|
|
||||||
"go",
|
|
||||||
"golang",
|
|
||||||
"hugo",
|
|
||||||
"development",
|
|
||||||
]
|
|
||||||
categories = [
|
|
||||||
"Development",
|
|
||||||
"golang",
|
|
||||||
]
|
|
||||||
series = ["Getting Started", "Hugo"]
|
|
||||||
featuredImage = "https://imgs.xkcd.com/comics/angular_momentum.jpg"
|
|
||||||
+++
|
|
||||||
|
|
||||||
## Step 1. Install Hugo
|
|
||||||
|
|
||||||
Goto [hugo releases](https://github.com/spf13/hugo/releases) and download the
|
|
||||||
appropriate version for your os and architecture.
|
|
||||||
|
|
||||||
Save it somewhere specific as we will be using it in the next step.
|
|
||||||
|
|
||||||
More complete instructions are available at [installing hugo](/overview/installing/)
|
|
||||||
|
|
||||||
## Step 2. Build the Docs
|
|
||||||
|
|
||||||
Hugo has its own example site which happens to also be the documentation site
|
|
||||||
you are reading right now.
|
|
||||||
|
|
||||||
Follow the following steps:
|
|
||||||
|
|
||||||
1. Clone the [hugo repository](http://github.com/spf13/hugo)
|
|
||||||
2. Go into the repo
|
|
||||||
3. Run hugo in server mode and build the docs
|
|
||||||
4. Open your browser to http://localhost:1313
|
|
||||||
|
|
||||||
Corresponding pseudo commands:
|
|
||||||
|
|
||||||
git clone https://github.com/spf13/hugo
|
|
||||||
cd hugo
|
|
||||||
/path/to/where/you/installed/hugo server --source=./docs
|
|
||||||
> 29 pages created
|
|
||||||
> 0 tags index created
|
|
||||||
> in 27 ms
|
|
||||||
> Web Server is available at http://localhost:1313
|
|
||||||
> Press ctrl+c to stop
|
|
||||||
|
|
||||||
Once you've gotten here, follow along the rest of this page on your local build.
|
|
||||||
|
|
||||||
## Step 3. Change the docs site
|
|
||||||
|
|
||||||
Stop the Hugo process by hitting ctrl+c.
|
|
||||||
|
|
||||||
Now we are going to run hugo again, but this time with hugo in watch mode.
|
|
||||||
|
|
||||||
/path/to/hugo/from/step/1/hugo server --source=./docs --watch
|
|
||||||
> 29 pages created
|
|
||||||
> 0 tags index created
|
|
||||||
> in 27 ms
|
|
||||||
> Web Server is available at http://localhost:1313
|
|
||||||
> Watching for changes in /Users/spf13/Code/hugo/docs/content
|
|
||||||
> Press ctrl+c to stop
|
|
||||||
|
|
||||||
|
|
||||||
Open your [favorite editor](http://vim.spf13.com) and change one of the source
|
|
||||||
content pages. How about changing this very file to *fix the typo*. How about changing this very file to *fix the typo*.
|
|
||||||
|
|
||||||
Content files are found in `docs/content/`. Unless otherwise specified, files
|
|
||||||
are located at the same relative location as the url, in our case
|
|
||||||
`docs/content/overview/quickstart.md`.
|
|
||||||
|
|
||||||
Change and save this file.. Notice what happened in your terminal.
|
|
||||||
|
|
||||||
> Change detected, rebuilding site
|
|
||||||
|
|
||||||
> 29 pages created
|
|
||||||
> 0 tags index created
|
|
||||||
> in 26 ms
|
|
||||||
|
|
||||||
Refresh the browser and observe that the typo is now fixed.
|
|
||||||
|
|
||||||
Notice how quick that was. Try to refresh the site before it's finished building.. I double dare you.
|
|
||||||
Having nearly instant feedback enables you to have your creativity flow without waiting for long builds.
|
|
||||||
|
|
||||||
## Step 4. Have fun
|
|
||||||
|
|
||||||
The best way to learn something is to play with it.
|
|
||||||
148
exampleSite/content/posts/markdown-syntax.md
Normal file
148
exampleSite/content/posts/markdown-syntax.md
Normal file
@@ -0,0 +1,148 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Markdown Syntax Guide"
|
||||||
|
date = "2019-03-11"
|
||||||
|
description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
|
||||||
|
tags = [
|
||||||
|
"markdown",
|
||||||
|
"css",
|
||||||
|
"html",
|
||||||
|
]
|
||||||
|
categories = [
|
||||||
|
"themes",
|
||||||
|
"syntax",
|
||||||
|
]
|
||||||
|
series = ["Themes Guide"]
|
||||||
|
aliases = ["migrate-from-jekyl"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
## Headings
|
||||||
|
|
||||||
|
The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
|
||||||
|
|
||||||
|
# H1
|
||||||
|
## H2
|
||||||
|
### H3
|
||||||
|
#### H4
|
||||||
|
##### H5
|
||||||
|
###### H6
|
||||||
|
|
||||||
|
## Paragraph
|
||||||
|
|
||||||
|
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
|
||||||
|
|
||||||
|
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
|
||||||
|
|
||||||
|
## Blockquotes
|
||||||
|
|
||||||
|
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
|
||||||
|
|
||||||
|
#### Blockquote without attribution
|
||||||
|
|
||||||
|
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
|
||||||
|
> **Note** that you can use *Markdown syntax* within a blockquote.
|
||||||
|
|
||||||
|
#### Blockquote with attribution
|
||||||
|
|
||||||
|
> Don't communicate by sharing memory, share memory by communicating.<br>
|
||||||
|
> — <cite>Rob Pike[^1]</cite>
|
||||||
|
|
||||||
|
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
|
||||||
|
|
||||||
|
## Tables
|
||||||
|
|
||||||
|
Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
|
||||||
|
|
||||||
|
Name | Age
|
||||||
|
--------|------
|
||||||
|
Bob | 27
|
||||||
|
Alice | 23
|
||||||
|
|
||||||
|
#### Inline Markdown within tables
|
||||||
|
|
||||||
|
| Italics | Bold | Code |
|
||||||
|
| -------- | -------- | ------ |
|
||||||
|
| *italics* | **bold** | `code` |
|
||||||
|
|
||||||
|
## Code Blocks
|
||||||
|
|
||||||
|
#### Code block with backticks
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Code block indented with four spaces
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
#### Code block with Hugo's internal highlight shortcode
|
||||||
|
{{< highlight html >}}
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
## List Types
|
||||||
|
|
||||||
|
#### Ordered List
|
||||||
|
|
||||||
|
1. First item
|
||||||
|
2. Second item
|
||||||
|
3. Third item
|
||||||
|
|
||||||
|
#### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* Another item
|
||||||
|
* And another item
|
||||||
|
|
||||||
|
#### Nested list
|
||||||
|
|
||||||
|
* Fruit
|
||||||
|
* Apple
|
||||||
|
* Orange
|
||||||
|
* Banana
|
||||||
|
* Dairy
|
||||||
|
* Milk
|
||||||
|
* Cheese
|
||||||
|
|
||||||
|
## Other Elements — abbr, sub, sup, kbd, mark
|
||||||
|
|
||||||
|
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
|
||||||
|
|
||||||
|
H<sub>2</sub>O
|
||||||
|
|
||||||
|
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
|
||||||
|
|
||||||
|
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
|
||||||
|
|
||||||
|
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
|
||||||
149
exampleSite/content/posts/markdown-syntax.pt-br.md
Normal file
149
exampleSite/content/posts/markdown-syntax.pt-br.md
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Guia de Sintaxe Markdown"
|
||||||
|
date = "2019-03-11"
|
||||||
|
description = "Artigo de exemplo mostrando a sintaxe básica Markdown e a formatação de elementos HTML."
|
||||||
|
tags = [
|
||||||
|
"markdown",
|
||||||
|
"css",
|
||||||
|
"html",
|
||||||
|
]
|
||||||
|
categories = [
|
||||||
|
"temas",
|
||||||
|
"sintaxe",
|
||||||
|
]
|
||||||
|
series = ["Guia do Thema"]
|
||||||
|
aliases = ["migrate-from-jekyl"]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Esse artigo é um exemplo básico para mostrar a sintaxe Markdown que é usada nos arquivos de conteúdo do Hugo. Ele também mostrar como cada elemento básico HTML é estilizado com CSS com os temas do Hugo.
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
## Cabeçalhos
|
||||||
|
|
||||||
|
Os seguintes elementos HTML `<h1>`—`<h6>` representam 6 níveis de cabeçalhos de seção. `<h1>` é para seções de nível mais alto enquanto `<h6>` é para o nível mais baixo.
|
||||||
|
|
||||||
|
# H1
|
||||||
|
## H2
|
||||||
|
### H3
|
||||||
|
#### H4
|
||||||
|
##### H5
|
||||||
|
###### H6
|
||||||
|
|
||||||
|
## Parágrafo
|
||||||
|
|
||||||
|
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
|
||||||
|
|
||||||
|
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
|
||||||
|
|
||||||
|
## Citações
|
||||||
|
|
||||||
|
O elemento de citações representa um conteúdo citado de outra origem, opcionalmente com atribuição que deve estar contida em um elemento `footer` ou `cite`, e também opcionalmente com informações in-line como anotações e abreviações.
|
||||||
|
|
||||||
|
#### Citações sem atribuição
|
||||||
|
|
||||||
|
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
|
||||||
|
> **Note** that you can use *Markdown syntax* within a blockquote.
|
||||||
|
|
||||||
|
#### Citações com atribuição
|
||||||
|
|
||||||
|
> Não comunique compartilhando memória, compartilhe memória comunicando.<br>
|
||||||
|
> — <cite>Rob Pike[^1]</cite>
|
||||||
|
|
||||||
|
[^1]: A citação acima foi extraída da [apresentação](https://www.youtube.com/watch?v=PAAkCSZUG1c) do Rob Pike durante a Gopherfest, de 18 de Novembro de 2015.
|
||||||
|
|
||||||
|
## Tabelas
|
||||||
|
|
||||||
|
Tabelas não fazem parte do cerne da especificação do Markdown, mas o Hugo oferece suporte a elas.
|
||||||
|
|
||||||
|
Nome | Idade
|
||||||
|
--------|-------
|
||||||
|
Bob | 27
|
||||||
|
Alice | 23
|
||||||
|
|
||||||
|
#### Tabelas com Markdown inline
|
||||||
|
|
||||||
|
| Italics | Bold | Code |
|
||||||
|
| -------- | -------- | ------ |
|
||||||
|
| *italics* | **bold** | `code` |
|
||||||
|
|
||||||
|
## Blocos de código
|
||||||
|
|
||||||
|
#### Blocos de código com crase
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="pt-br">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Exemplo de Documento HTML5</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Teste</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Blocos de código com quatro espaços
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="pt-br">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Exemplo de Documento HTML5</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Teste</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
#### Blocos de código com highlight shortcode interno do Hugo
|
||||||
|
|
||||||
|
{{< highlight html >}}
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="pt-br">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Exemplo de Documento HTML5</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Teste</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
## Tipos de Listas
|
||||||
|
|
||||||
|
#### Listas Ordenada
|
||||||
|
|
||||||
|
1. Primeiro item
|
||||||
|
2. Segundo item
|
||||||
|
3. Terceiro item
|
||||||
|
|
||||||
|
#### Listas não Ordenada
|
||||||
|
|
||||||
|
* Um item
|
||||||
|
* Outro item
|
||||||
|
* Algum outro item
|
||||||
|
|
||||||
|
#### Listas aninhadas
|
||||||
|
|
||||||
|
* Frutas
|
||||||
|
* Maçã
|
||||||
|
* Laranja
|
||||||
|
* Banana
|
||||||
|
* Laticínios
|
||||||
|
* Leite
|
||||||
|
* Queijo
|
||||||
|
|
||||||
|
## Outros Elementos — abbr, sub, sup, kbd, mark
|
||||||
|
|
||||||
|
<abbr title="Graphics Interchange Format">GIF</abbr> é um formato de imagem bitmap.
|
||||||
|
|
||||||
|
H<sub>2</sub>O
|
||||||
|
|
||||||
|
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
|
||||||
|
|
||||||
|
Aperte <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> para fechar.
|
||||||
|
|
||||||
|
A maioria das <mark>salamandras</mark> são noturnas e caçam insetos, vermes, e outras criaturas pequenas.
|
||||||
49
exampleSite/content/posts/math-typesetting.md
Normal file
49
exampleSite/content/posts/math-typesetting.md
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
author: Hugo Authors
|
||||||
|
title: Math Typesetting
|
||||||
|
date: 2019-03-08
|
||||||
|
description: A brief guide to setup KaTeX
|
||||||
|
math: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
In this example we will be using [KaTeX](https://katex.org/)
|
||||||
|
|
||||||
|
- Create a partial under `/layouts/partials/math.html`
|
||||||
|
- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
|
||||||
|
- Include the partial in your templates like so:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
{{ if or .Params.math .Site.Params.math }}
|
||||||
|
{{ partial "math.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
```
|
||||||
|
|
||||||
|
- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
|
||||||
|
- To enable KaTex on a per page basis include the parameter `math: true` in content files
|
||||||
|
|
||||||
|
**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
|
||||||
|
|
||||||
|
{{< math.inline >}}
|
||||||
|
{{ if or .Page.Params.math .Site.Params.math }}
|
||||||
|
<!-- KaTeX -->
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script>
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
|
||||||
|
{{ end }}
|
||||||
|
{{</ math.inline >}}
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
{{< math.inline >}}
|
||||||
|
<p>
|
||||||
|
Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
|
||||||
|
</p>
|
||||||
|
{{</ math.inline >}}
|
||||||
|
|
||||||
|
Block math:
|
||||||
|
$$
|
||||||
|
\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
|
||||||
|
$$
|
||||||
49
exampleSite/content/posts/math-typesetting.pt-br.md
Normal file
49
exampleSite/content/posts/math-typesetting.pt-br.md
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
author: Hugo Authors
|
||||||
|
title: Configuração de Equações Matemáticas
|
||||||
|
date: 2019-03-08
|
||||||
|
description: Um guia rápido sobre utilizar KaTeX
|
||||||
|
math: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Em um projeto Hugo as Notações Matemáticas podem ser usadas com a ajuda de bibliotecas JavaScript de terceiros.
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
Nesse exemplo usaremos o [KaTeX](https://katex.org/).
|
||||||
|
|
||||||
|
- Crie um partial template em `/layouts/partials/math.html`
|
||||||
|
- Dentro, utilize o [Auto-render Extension](https://katex.org/docs/autorender.html) ou sirva os scripts localmente.
|
||||||
|
- Inclua o partial nos seus templates da seguinte forma:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
{{ if or .Params.math .Site.Params.math }}
|
||||||
|
{{ partial "math.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
```
|
||||||
|
|
||||||
|
- Para ativar o KaTex globalmente defina o parâmetro `math` como `true` na confgiuração do projeto
|
||||||
|
- Para ativar o KaTex em páginas específicas inclua o parâmetro `math: true` nos arquivos de conteúdo
|
||||||
|
|
||||||
|
**Nota:** Use a referência online [Supported TeX Functions](https://katex.org/docs/supported.html) como base para criar notações matemáticas.
|
||||||
|
|
||||||
|
{{< math.inline >}}
|
||||||
|
{{ if or .Page.Params.math .Site.Params.math }}
|
||||||
|
<!-- KaTeX -->
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script>
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
|
||||||
|
{{ end }}
|
||||||
|
{{</ math.inline >}}
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
{{< math.inline >}}
|
||||||
|
<p>
|
||||||
|
Notação inline: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
|
||||||
|
</p>
|
||||||
|
{{</ math.inline >}}
|
||||||
|
|
||||||
|
Notação em bloco:
|
||||||
|
$$
|
||||||
|
\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
|
||||||
|
$$
|
||||||
@@ -1,167 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2014-03-10"
|
|
||||||
title = "Migrate to Hugo from Jekyll"
|
|
||||||
description = "The post explains how to migrate from from Jekyll to Hugo."
|
|
||||||
series = ["Getting Started", "Hugo"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
Table of Contents
|
|
||||||
=================
|
|
||||||
|
|
||||||
1. [Move static content to `static`](#move-static-content-to-static)
|
|
||||||
2. [Create your Hugo configuration file](#create-your-hugo-configuration-file)
|
|
||||||
3. [Set your configuration publish folder to `site`](#set-your-configuration-publish-folder-to-site)
|
|
||||||
4. [Convert Jekyll templates to Hugo templates](#convert-jekyll-templates-to-hugo-templates)
|
|
||||||
5. [Convert Jekyll plugins to Hugo shortcodes](#convert-jekyll-plugins-to-hugo-shortcodes)
|
|
||||||
* [Implementation](#implementation)
|
|
||||||
* [Usage](#usage)
|
|
||||||
6. [Finishing Touches](#finishing-touches)
|
|
||||||
* [Fix Content](#fix-content)
|
|
||||||
* [Clean Up](#clean-up)
|
|
||||||
7. [A practical example in a diff](#a-practical-example-in-a-diff)
|
|
||||||
|
|
||||||
## Move static content to `static`
|
|
||||||
Jekyll has a rule that any directory not starting with `_` will be copied as-is to the `_site` output. Hugo keeps all static content under `static`. You should therefore move it all there.
|
|
||||||
With Jekyll, something that looked like
|
|
||||||
|
|
||||||
▾ <root>/
|
|
||||||
▾ images/
|
|
||||||
logo.png
|
|
||||||
|
|
||||||
should become
|
|
||||||
|
|
||||||
▾ <root>/
|
|
||||||
▾ static/
|
|
||||||
▾ images/
|
|
||||||
logo.png
|
|
||||||
|
|
||||||
Additionally, you'll want any files that should reside at the root (such as `CNAME`) to be moved to `static`.
|
|
||||||
|
|
||||||
## Create your Hugo configuration file
|
|
||||||
Hugo can read your configuration as JSON, YAML or TOML. Hugo supports parameters custom configuration too. Refer to the [Hugo configuration documentation](/overview/configuration/) for details.
|
|
||||||
|
|
||||||
## Set your configuration publish folder to `_site`
|
|
||||||
The default is for Jekyll to publish to `_site` and for Hugo to publish to `public`. If, like me, you have [`_site` mapped to a git submodule on the `gh-pages` branch](http://blog.blindgaenger.net/generate_github_pages_in_a_submodule.html), you'll want to do one of two alternatives:
|
|
||||||
|
|
||||||
1. Change your submodule to point to map `gh-pages` to public instead of `_site` (recommended).
|
|
||||||
|
|
||||||
git submodule deinit _site
|
|
||||||
git rm _site
|
|
||||||
git submodule add -b gh-pages git@github.com:your-username/your-repo.git public
|
|
||||||
|
|
||||||
2. Or, change the Hugo configuration to use `_site` instead of `public`.
|
|
||||||
|
|
||||||
{
|
|
||||||
..
|
|
||||||
"publishdir": "_site",
|
|
||||||
..
|
|
||||||
}
|
|
||||||
|
|
||||||
## Convert Jekyll templates to Hugo templates
|
|
||||||
That's the bulk of the work right here. The documentation is your friend. You should refer to [Jekyll's template documentation](http://jekyllrb.com/docs/templates/) if you need to refresh your memory on how you built your blog and [Hugo's template](/layout/templates/) to learn Hugo's way.
|
|
||||||
|
|
||||||
As a single reference data point, converting my templates for [heyitsalex.net](http://heyitsalex.net/) took me no more than a few hours.
|
|
||||||
|
|
||||||
## Convert Jekyll plugins to Hugo shortcodes
|
|
||||||
Jekyll has [plugins](http://jekyllrb.com/docs/plugins/); Hugo has [shortcodes](/doc/shortcodes/). It's fairly trivial to do a port.
|
|
||||||
|
|
||||||
### Implementation
|
|
||||||
As an example, I was using a custom [`image_tag`](https://github.com/alexandre-normand/alexandre-normand/blob/74bb12036a71334fdb7dba84e073382fc06908ec/_plugins/image_tag.rb) plugin to generate figures with caption when running Jekyll. As I read about shortcodes, I found Hugo had a nice built-in shortcode that does exactly the same thing.
|
|
||||||
|
|
||||||
Jekyll's plugin:
|
|
||||||
|
|
||||||
module Jekyll
|
|
||||||
class ImageTag < Liquid::Tag
|
|
||||||
@url = nil
|
|
||||||
@caption = nil
|
|
||||||
@class = nil
|
|
||||||
@link = nil
|
|
||||||
// Patterns
|
|
||||||
IMAGE_URL_WITH_CLASS_AND_CAPTION =
|
|
||||||
IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK = /(\w+)(\s+)((https?:\/\/|\/)(\S+))(\s+)"(.*?)"(\s+)->((https?:\/\/|\/)(\S+))(\s*)/i
|
|
||||||
IMAGE_URL_WITH_CAPTION = /((https?:\/\/|\/)(\S+))(\s+)"(.*?)"/i
|
|
||||||
IMAGE_URL_WITH_CLASS = /(\w+)(\s+)((https?:\/\/|\/)(\S+))/i
|
|
||||||
IMAGE_URL = /((https?:\/\/|\/)(\S+))/i
|
|
||||||
def initialize(tag_name, markup, tokens)
|
|
||||||
super
|
|
||||||
if markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK
|
|
||||||
@class = $1
|
|
||||||
@url = $3
|
|
||||||
@caption = $7
|
|
||||||
@link = $9
|
|
||||||
elsif markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION
|
|
||||||
@class = $1
|
|
||||||
@url = $3
|
|
||||||
@caption = $7
|
|
||||||
elsif markup =~ IMAGE_URL_WITH_CAPTION
|
|
||||||
@url = $1
|
|
||||||
@caption = $5
|
|
||||||
elsif markup =~ IMAGE_URL_WITH_CLASS
|
|
||||||
@class = $1
|
|
||||||
@url = $3
|
|
||||||
elsif markup =~ IMAGE_URL
|
|
||||||
@url = $1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
def render(context)
|
|
||||||
if @class
|
|
||||||
source = "<figure class='#{@class}'>"
|
|
||||||
else
|
|
||||||
source = "<figure>"
|
|
||||||
end
|
|
||||||
if @link
|
|
||||||
source += "<a href=\"#{@link}\">"
|
|
||||||
end
|
|
||||||
source += "<img src=\"#{@url}\">"
|
|
||||||
if @link
|
|
||||||
source += "</a>"
|
|
||||||
end
|
|
||||||
source += "<figcaption>#{@caption}</figcaption>" if @caption
|
|
||||||
source += "</figure>"
|
|
||||||
source
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
Liquid::Template.register_tag('image', Jekyll::ImageTag)
|
|
||||||
|
|
||||||
is written as this Hugo shortcode:
|
|
||||||
|
|
||||||
<!-- image -->
|
|
||||||
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
|
||||||
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
|
|
||||||
<img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}"{{ end }} />
|
|
||||||
{{ if .Get "link"}}</a>{{ end }}
|
|
||||||
{{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
|
|
||||||
<figcaption>{{ if isset .Params "title" }}
|
|
||||||
{{ .Get "title" }}{{ end }}
|
|
||||||
{{ if or (.Get "caption") (.Get "attr")}}<p>
|
|
||||||
{{ .Get "caption" }}
|
|
||||||
{{ with .Get "attrlink"}}<a href="{{.}}"> {{ end }}
|
|
||||||
{{ .Get "attr" }}
|
|
||||||
{{ if .Get "attrlink"}}</a> {{ end }}
|
|
||||||
</p> {{ end }}
|
|
||||||
</figcaption>
|
|
||||||
{{ end }}
|
|
||||||
</figure>
|
|
||||||
<!-- image -->
|
|
||||||
|
|
||||||
### Usage
|
|
||||||
I simply changed:
|
|
||||||
|
|
||||||
{% image full http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg "One of my favorite touristy-type photos. I secretly waited for the good light while we were "having fun" and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." ->http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/ %}
|
|
||||||
|
|
||||||
to this (this example uses a slightly extended version named `fig`, different than the built-in `figure`):
|
|
||||||
|
|
||||||
{{%/* fig class="full" src="http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg" title="One of my favorite touristy-type photos. I secretly waited for the good light while we were having fun and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." link="http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/" */%}}
|
|
||||||
|
|
||||||
As a bonus, the shortcode named parameters are, arguably, more readable.
|
|
||||||
|
|
||||||
## Finishing touches
|
|
||||||
### Fix content
|
|
||||||
Depending on the amount of customization that was done with each post with Jekyll, this step will require more or less effort. There are no hard and fast rules here except that `hugo server --watch` is your friend. Test your changes and fix errors as needed.
|
|
||||||
|
|
||||||
### Clean up
|
|
||||||
You'll want to remove the Jekyll configuration at this point. If you have anything else that isn't used, delete it.
|
|
||||||
|
|
||||||
## A practical example in a diff
|
|
||||||
[Hey, it's Alex](http://heyitsalex.net/) was migrated in less than a _father-with-kids day_ from Jekyll to Hugo. You can see all the changes (and screw-ups) by looking at this [diff](https://github.com/alexandre-normand/alexandre-normand/compare/869d69435bd2665c3fbf5b5c78d4c22759d7613a...b7f6605b1265e83b4b81495423294208cc74d610).
|
|
||||||
43
exampleSite/content/posts/more-rich-content.md
Normal file
43
exampleSite/content/posts/more-rich-content.md
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "More Rich Content"
|
||||||
|
date = "2019-03-09"
|
||||||
|
description = "A brief description about Hugo Coder's Custom Shortcodes"
|
||||||
|
tags = [
|
||||||
|
"shortcodes"
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Hugo Coder provides some Custom Shortcodes.
|
||||||
|
<!--more-->
|
||||||
|
---
|
||||||
|
|
||||||
|
## Shortcodes Avisos
|
||||||
|
|
||||||
|
{{< notice note >}}
|
||||||
|
One note here.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}
|
||||||
|
I'm giving a tip about something.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice example >}}
|
||||||
|
This is an example.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice question >}}
|
||||||
|
Is this a question?
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}
|
||||||
|
Notice that this box contain information.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}
|
||||||
|
This is the last warning!
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice error >}}
|
||||||
|
There is an error in your code.
|
||||||
|
{{< /notice >}}
|
||||||
43
exampleSite/content/posts/more-rich-content.pt-br.md
Normal file
43
exampleSite/content/posts/more-rich-content.pt-br.md
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Mais Conteúdo Rico"
|
||||||
|
date = "2019-03-09"
|
||||||
|
description = "Uma breve descrição sobre Shortcodes customizados do Hugo Coder"
|
||||||
|
tags = [
|
||||||
|
"shortcodes"
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
O Hugo Coder proporciona alguns Shortcodes Customizados.
|
||||||
|
<!--more-->
|
||||||
|
---
|
||||||
|
|
||||||
|
## Shortcodes Avisos
|
||||||
|
|
||||||
|
{{< notice note >}}
|
||||||
|
Uma nota aqui.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}
|
||||||
|
Estou lhe dando uma dica.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice example >}}
|
||||||
|
Isso é um exemplo.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice question >}}
|
||||||
|
Isso é um pergunta?
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}
|
||||||
|
Note que essa caixa contém informações.
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}
|
||||||
|
Este é o último aviso!
|
||||||
|
{{< /notice >}}
|
||||||
|
|
||||||
|
{{< notice error >}}
|
||||||
|
Há um erro no seu código.
|
||||||
|
{{< /notice >}}
|
||||||
45
exampleSite/content/posts/placeholder-text.md
Normal file
45
exampleSite/content/posts/placeholder-text.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Placeholder Text"
|
||||||
|
date = "2019-03-09"
|
||||||
|
description = "Lorem Ipsum Dolor Si Amet"
|
||||||
|
tags = [
|
||||||
|
"markdown",
|
||||||
|
"text",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Lorem est tota propiore conpellat pectoribus de pectora summo. <!--more-->Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
|
||||||
|
|
||||||
|
1. Exierant elisi ambit vivere dedere
|
||||||
|
2. Duce pollice
|
||||||
|
3. Eris modo
|
||||||
|
4. Spargitque ferrea quos palude
|
||||||
|
|
||||||
|
Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
|
||||||
|
|
||||||
|
1. Comas hunc haec pietate fetum procerum dixit
|
||||||
|
2. Post torum vates letum Tiresia
|
||||||
|
3. Flumen querellas
|
||||||
|
4. Arcanaque montibus omnes
|
||||||
|
5. Quidem et
|
||||||
|
|
||||||
|
# Vagus elidunt
|
||||||
|
|
||||||
|
<svg class="canon" xmlns="http://www.w3.org/2000/svg" overflow="visible" viewBox="0 0 496 373" height="373" width="496"><g fill="none"><path stroke="#000" stroke-width=".75" d="M.599 372.348L495.263 1.206M.312.633l494.95 370.853M.312 372.633L247.643.92M248.502.92l246.76 370.566M330.828 123.869V1.134M330.396 1.134L165.104 124.515"></path><path stroke="#ED1C24" stroke-width=".75" d="M275.73 41.616h166.224v249.05H275.73zM54.478 41.616h166.225v249.052H54.478z"></path><path stroke="#000" stroke-width=".75" d="M.479.375h495v372h-495zM247.979.875v372"></path><ellipse cx="498.729" cy="177.625" rx=".75" ry="1.25"></ellipse><ellipse cx="247.229" cy="377.375" rx=".75" ry="1.25"></ellipse></g></svg>
|
||||||
|
|
||||||
|
[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
|
||||||
|
|
||||||
|
## Mane refeci capiebant unda mulcebat
|
||||||
|
|
||||||
|
Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
|
||||||
|
|
||||||
|
Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
|
||||||
|
|
||||||
|
Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
|
||||||
|
|
||||||
|
{{< css.inline >}}
|
||||||
|
<style>
|
||||||
|
.canon { background: white; width: 100%; height: auto; }
|
||||||
|
</style>
|
||||||
|
{{< /css.inline >}}
|
||||||
45
exampleSite/content/posts/placeholder-text.pt-br.md
Normal file
45
exampleSite/content/posts/placeholder-text.pt-br.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Texto de Exemplo"
|
||||||
|
date = "2019-03-09"
|
||||||
|
description = "Lorem Ipsum Dolor Si Amet"
|
||||||
|
tags = [
|
||||||
|
"markdown",
|
||||||
|
"text",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Lorem est tota propiore conpellat pectoribus de pectora summo. <!--more-->Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
|
||||||
|
|
||||||
|
1. Exierant elisi ambit vivere dedere
|
||||||
|
2. Duce pollice
|
||||||
|
3. Eris modo
|
||||||
|
4. Spargitque ferrea quos palude
|
||||||
|
|
||||||
|
Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
|
||||||
|
|
||||||
|
1. Comas hunc haec pietate fetum procerum dixit
|
||||||
|
2. Post torum vates letum Tiresia
|
||||||
|
3. Flumen querellas
|
||||||
|
4. Arcanaque montibus omnes
|
||||||
|
5. Quidem et
|
||||||
|
|
||||||
|
# Vagus elidunt
|
||||||
|
|
||||||
|
<svg class="canon" xmlns="http://www.w3.org/2000/svg" overflow="visible" viewBox="0 0 496 373" height="373" width="496"><g fill="none"><path stroke="#000" stroke-width=".75" d="M.599 372.348L495.263 1.206M.312.633l494.95 370.853M.312 372.633L247.643.92M248.502.92l246.76 370.566M330.828 123.869V1.134M330.396 1.134L165.104 124.515"></path><path stroke="#ED1C24" stroke-width=".75" d="M275.73 41.616h166.224v249.05H275.73zM54.478 41.616h166.225v249.052H54.478z"></path><path stroke="#000" stroke-width=".75" d="M.479.375h495v372h-495zM247.979.875v372"></path><ellipse cx="498.729" cy="177.625" rx=".75" ry="1.25"></ellipse><ellipse cx="247.229" cy="377.375" rx=".75" ry="1.25"></ellipse></g></svg>
|
||||||
|
|
||||||
|
[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
|
||||||
|
|
||||||
|
## Mane refeci capiebant unda mulcebat
|
||||||
|
|
||||||
|
Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
|
||||||
|
|
||||||
|
Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
|
||||||
|
|
||||||
|
Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
|
||||||
|
|
||||||
|
{{< css.inline >}}
|
||||||
|
<style>
|
||||||
|
.canon { background: white; width: 100%; height: auto; }
|
||||||
|
</style>
|
||||||
|
{{< /css.inline >}}
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2019-03-20"
|
|
||||||
title = "Render LaTeX using KaTeX"
|
|
||||||
description = "Katex support demo"
|
|
||||||
katex = true
|
|
||||||
series = ["Theme", "Hugo"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
Enable katex by adding `katex = "true"` to the [front matter](https://gohugo.io/content-management/front-matter/)
|
|
||||||
|
|
||||||
```toml
|
|
||||||
+++
|
|
||||||
katex = "true"
|
|
||||||
+++
|
|
||||||
```
|
|
||||||
|
|
||||||
If you want to enable KaTeX or MathJax for all post, add `katex = ture` or `math = true` in `config.toml` in `[params]` section.
|
|
||||||
|
|
||||||
It's almost a dropin alternative to the mathjax solution,you should just choose one of them.
|
|
||||||
|
|
||||||
Inline math looks like this
|
|
||||||
|
|
||||||
```tex
|
|
||||||
This is text with inline math $\sum_{n=1}^{\infty} 2^{-n} = 1$
|
|
||||||
```
|
|
||||||
|
|
||||||
This is text with inline math $\sum_{n=1}^{\infty} 2^{-n} = 1$
|
|
||||||
and with math blocks:
|
|
||||||
|
|
||||||
```tex
|
|
||||||
$$
|
|
||||||
\sum_{n=1}^{\infty} 2^{-n} = 1
|
|
||||||
$$
|
|
||||||
```
|
|
||||||
|
|
||||||
$$
|
|
||||||
\sum_{n=1}^{\infty} 2^{-n} = 1
|
|
||||||
$$
|
|
||||||
34
exampleSite/content/posts/rich-content.md
Normal file
34
exampleSite/content/posts/rich-content.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Rich Content"
|
||||||
|
date = "2019-03-10"
|
||||||
|
description = "A brief description of Hugo Shortcodes"
|
||||||
|
tags = [
|
||||||
|
"shortcodes",
|
||||||
|
"privacy",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
|
||||||
|
<!--more-->
|
||||||
|
---
|
||||||
|
|
||||||
|
## YouTube Privacy Enhanced Shortcode
|
||||||
|
|
||||||
|
{{< youtube ZJthWmvUzzc >}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Twitter Simple Shortcode
|
||||||
|
|
||||||
|
{{< twitter_simple 1085870671291310081 >}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Vimeo Simple Shortcode
|
||||||
|
|
||||||
|
{{< vimeo_simple 48912912 >}}
|
||||||
34
exampleSite/content/posts/rich-content.pt-br.md
Normal file
34
exampleSite/content/posts/rich-content.pt-br.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
title = "Conteúdo Rico"
|
||||||
|
date = "2019-03-10"
|
||||||
|
description = "Uma breve descrição sobre Shortcodes do Hugo"
|
||||||
|
tags = [
|
||||||
|
"shortcodes",
|
||||||
|
"privacy",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
O Hugo vem com vários [Shortcodes Internos](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) para conteúdo rico, assim como uma [Configuração de Privacidade](https://gohugo.io/about/hugo-and-gdpr/) e uma gama de Shortcodes simples que permitem embutir versões estáticas e sem JS de várias de redes sociais.
|
||||||
|
<!--more-->
|
||||||
|
---
|
||||||
|
|
||||||
|
## Shortcode do YouTube com privacidade melhorada
|
||||||
|
|
||||||
|
{{< youtube ZJthWmvUzzc >}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Shortcode simples do Twitter
|
||||||
|
|
||||||
|
{{< twitter_simple 1085870671291310081 >}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Shortcode simples do Vimeo
|
||||||
|
|
||||||
|
{{< vimeo_simple 48912912 >}}
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2017-01-08"
|
|
||||||
title = "Theme Demo"
|
|
||||||
description = "The post demonstrates features of the coder theme."
|
|
||||||
images = ["/images/N90.jpg"]
|
|
||||||
math = true
|
|
||||||
series = ["Theme", "Hugo"]
|
|
||||||
authors = ["John Doe", "Jane Smith"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
## Style Demo
|
|
||||||
|
|
||||||
# h1 Heading
|
|
||||||
## h2 Heading
|
|
||||||
### h3 Heading
|
|
||||||
#### h4 Heading
|
|
||||||
##### h5 Heading
|
|
||||||
###### h6 Heading
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**This is bold text**
|
|
||||||
|
|
||||||
__This is bold text__
|
|
||||||
|
|
||||||
*This is italic text*
|
|
||||||
|
|
||||||
_This is italic text_
|
|
||||||
|
|
||||||
~~Deleted text~~
|
|
||||||
|
|
||||||
This is text with inline math $\sum_{n=1}^{\infty} 2^{-n} = 1$ and with math blocks:
|
|
||||||
|
|
||||||
$$
|
|
||||||
\sum_{n=1}^{\infty} 2^{-n} = 1
|
|
||||||
$$
|
|
||||||
|
|
||||||
| Heading | Another heading |
|
|
||||||
| :----: | :-------------: |
|
|
||||||
| text | text |
|
|
||||||
| text | text |
|
|
||||||
| text | text |
|
|
||||||
|
|
||||||
> Block quotes are
|
|
||||||
> written like so.
|
|
||||||
>
|
|
||||||
> They can span multiple paragraphs,
|
|
||||||
> if you like.
|
|
||||||
|
|
||||||
Some text, and some `code` and then a nice plain [link with title](https://github.com/davidhampgonsalves/davidhampgonsalves.com-hugo "title text!").
|
|
||||||
|
|
||||||
and then
|
|
||||||
|
|
||||||
+ Create a list by starting a line with `+`, `-`, or `*`
|
|
||||||
+ Sub-lists are made by indenting 2 spaces:
|
|
||||||
- Marker character change forces new list start:
|
|
||||||
* Ac tristique libero volutpat at
|
|
||||||
+ Very easy!
|
|
||||||
|
|
||||||
vs.
|
|
||||||
|
|
||||||
1. Lorem ipsum dolor sit amet
|
|
||||||
2. Consectetur adipiscing elit
|
|
||||||
3. Integer molestie lorem at massa
|
|
||||||
|
|
||||||
## Code
|
|
||||||
|
|
||||||
Inline `code`
|
|
||||||
|
|
||||||
``` js
|
|
||||||
var foo = function (bar) {
|
|
||||||
return bar++;
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log(foo(5));
|
|
||||||
```
|
|
||||||
|
|
||||||
## Hugo shortcode for figure
|
|
||||||
|
|
||||||
{{< figure src="/images/N90.jpg" caption="N90 nebula, \"New stars shed light on the past\" by ESA/Hubble" >}}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
+++
|
|
||||||
date = "2020-05-25"
|
|
||||||
title = "Twemoji Support 🤩"
|
|
||||||
description = "The post demonstrates Twemoji support"
|
|
||||||
series = ["Theme", "Hugo"]
|
|
||||||
+++
|
|
||||||
|
|
||||||
If you want to use Twitter's [Twemoji](https://twemoji.twitter.com/) across your website, enable it in your `config.toml`
|
|
||||||
```toml
|
|
||||||
[params]
|
|
||||||
enableTwemoji = true
|
|
||||||
```
|
|
||||||
|
|
||||||
This will not only give your website unified emojis across all platforms. It will also give you [the latest Unicode 13 emoji set](https://blog.emojipedia.org/twemoji-13-0-emoji-changelog/), such as 🧋🫕🛻🪗🪞.
|
|
||||||
|
|
||||||
# Emoji size changes with text size 🤩
|
|
||||||
## Emoji size changes with text size 🤩
|
|
||||||
### Emoji size changes with text size 🤩
|
|
||||||
#### Emoji size changes with text size 🤩
|
|
||||||
##### Emoji size changes with text size 🤩
|
|
||||||
###### Emoji size changes with text size 🤩
|
|
||||||
|
|
||||||
---
|
|
||||||
@@ -3,4 +3,4 @@ title = "Projetos"
|
|||||||
slug = "projects"
|
slug = "projects"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Em construção... Aguarde!
|
Nada para ver aqui.. Circulando!
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Snippets"
|
|
||||||
---
|
|
||||||
|
|
||||||
This content is in `content/snippets/_index.md`
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: "First snippet"
|
|
||||||
---
|
|
||||||
|
|
||||||
This content is in `snippets/first/index.md`
|
|
||||||
|
|
||||||
```sh
|
|
||||||
pwd
|
|
||||||
```
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Second snippet"
|
|
||||||
---
|
|
||||||
|
|
||||||
This content is in `snippets/second/index.md`
|
|
||||||
|
|
||||||
```sh
|
|
||||||
ls -la
|
|
||||||
```
|
|
||||||
@@ -0,0 +1,297 @@
|
|||||||
|
body.colorscheme-dark {
|
||||||
|
color: #dadada;
|
||||||
|
background-color: #212121; }
|
||||||
|
body.colorscheme-dark a {
|
||||||
|
color: #42a5f5; }
|
||||||
|
body.colorscheme-dark h1,
|
||||||
|
body.colorscheme-dark h2,
|
||||||
|
body.colorscheme-dark h3,
|
||||||
|
body.colorscheme-dark h4,
|
||||||
|
body.colorscheme-dark h5,
|
||||||
|
body.colorscheme-dark h6 {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark h1:hover .heading-link,
|
||||||
|
body.colorscheme-dark h2:hover .heading-link,
|
||||||
|
body.colorscheme-dark h3:hover .heading-link,
|
||||||
|
body.colorscheme-dark h4:hover .heading-link,
|
||||||
|
body.colorscheme-dark h5:hover .heading-link,
|
||||||
|
body.colorscheme-dark h6:hover .heading-link {
|
||||||
|
visibility: visible; }
|
||||||
|
body.colorscheme-dark h1 .heading-link,
|
||||||
|
body.colorscheme-dark h2 .heading-link,
|
||||||
|
body.colorscheme-dark h3 .heading-link,
|
||||||
|
body.colorscheme-dark h4 .heading-link,
|
||||||
|
body.colorscheme-dark h5 .heading-link,
|
||||||
|
body.colorscheme-dark h6 .heading-link {
|
||||||
|
color: #42a5f5;
|
||||||
|
font-weight: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 80%;
|
||||||
|
visibility: hidden; }
|
||||||
|
body.colorscheme-dark h1 .title-link,
|
||||||
|
body.colorscheme-dark h2 .title-link,
|
||||||
|
body.colorscheme-dark h3 .title-link,
|
||||||
|
body.colorscheme-dark h4 .title-link,
|
||||||
|
body.colorscheme-dark h5 .title-link,
|
||||||
|
body.colorscheme-dark h6 .title-link {
|
||||||
|
color: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
text-decoration: none; }
|
||||||
|
body.colorscheme-dark code {
|
||||||
|
background-color: #424242;
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .highlight pre {
|
||||||
|
color: #212121; }
|
||||||
|
body.colorscheme-dark pre code {
|
||||||
|
background-color: inherit;
|
||||||
|
color: inherit; }
|
||||||
|
body.colorscheme-dark blockquote {
|
||||||
|
border-left: 2px solid #424242; }
|
||||||
|
body.colorscheme-dark th,
|
||||||
|
body.colorscheme-dark td {
|
||||||
|
padding: 1.6rem; }
|
||||||
|
body.colorscheme-dark table {
|
||||||
|
border-collapse: collapse; }
|
||||||
|
body.colorscheme-dark table td,
|
||||||
|
body.colorscheme-dark table th {
|
||||||
|
border: 2px solid #dadada; }
|
||||||
|
body.colorscheme-dark table tr:first-child th {
|
||||||
|
border-top: 0; }
|
||||||
|
body.colorscheme-dark table tr:last-child td {
|
||||||
|
border-bottom: 0; }
|
||||||
|
body.colorscheme-dark table tr td:first-child,
|
||||||
|
body.colorscheme-dark table tr th:first-child {
|
||||||
|
border-left: 0; }
|
||||||
|
body.colorscheme-dark table tr td:last-child,
|
||||||
|
body.colorscheme-dark table tr th:last-child {
|
||||||
|
border-right: 0; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto {
|
||||||
|
color: #dadada;
|
||||||
|
background-color: #212121; }
|
||||||
|
body.colorscheme-auto a {
|
||||||
|
color: #42a5f5; }
|
||||||
|
body.colorscheme-auto h1,
|
||||||
|
body.colorscheme-auto h2,
|
||||||
|
body.colorscheme-auto h3,
|
||||||
|
body.colorscheme-auto h4,
|
||||||
|
body.colorscheme-auto h5,
|
||||||
|
body.colorscheme-auto h6 {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto h1:hover .heading-link,
|
||||||
|
body.colorscheme-auto h2:hover .heading-link,
|
||||||
|
body.colorscheme-auto h3:hover .heading-link,
|
||||||
|
body.colorscheme-auto h4:hover .heading-link,
|
||||||
|
body.colorscheme-auto h5:hover .heading-link,
|
||||||
|
body.colorscheme-auto h6:hover .heading-link {
|
||||||
|
visibility: visible; }
|
||||||
|
body.colorscheme-auto h1 .heading-link,
|
||||||
|
body.colorscheme-auto h2 .heading-link,
|
||||||
|
body.colorscheme-auto h3 .heading-link,
|
||||||
|
body.colorscheme-auto h4 .heading-link,
|
||||||
|
body.colorscheme-auto h5 .heading-link,
|
||||||
|
body.colorscheme-auto h6 .heading-link {
|
||||||
|
color: #42a5f5;
|
||||||
|
font-weight: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 80%;
|
||||||
|
visibility: hidden; }
|
||||||
|
body.colorscheme-auto h1 .title-link,
|
||||||
|
body.colorscheme-auto h2 .title-link,
|
||||||
|
body.colorscheme-auto h3 .title-link,
|
||||||
|
body.colorscheme-auto h4 .title-link,
|
||||||
|
body.colorscheme-auto h5 .title-link,
|
||||||
|
body.colorscheme-auto h6 .title-link {
|
||||||
|
color: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
text-decoration: none; }
|
||||||
|
body.colorscheme-auto code {
|
||||||
|
background-color: #424242;
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .highlight pre {
|
||||||
|
color: #212121; }
|
||||||
|
body.colorscheme-auto pre code {
|
||||||
|
background-color: inherit;
|
||||||
|
color: inherit; }
|
||||||
|
body.colorscheme-auto blockquote {
|
||||||
|
border-left: 2px solid #424242; }
|
||||||
|
body.colorscheme-auto th,
|
||||||
|
body.colorscheme-auto td {
|
||||||
|
padding: 1.6rem; }
|
||||||
|
body.colorscheme-auto table {
|
||||||
|
border-collapse: collapse; }
|
||||||
|
body.colorscheme-auto table td,
|
||||||
|
body.colorscheme-auto table th {
|
||||||
|
border: 2px solid #dadada; }
|
||||||
|
body.colorscheme-auto table tr:first-child th {
|
||||||
|
border-top: 0; }
|
||||||
|
body.colorscheme-auto table tr:last-child td {
|
||||||
|
border-bottom: 0; }
|
||||||
|
body.colorscheme-auto table tr td:first-child,
|
||||||
|
body.colorscheme-auto table tr th:first-child {
|
||||||
|
border-left: 0; }
|
||||||
|
body.colorscheme-auto table tr td:last-child,
|
||||||
|
body.colorscheme-auto table tr th:last-child {
|
||||||
|
border-right: 0; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .content .post .tags .tag {
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-dark .content .post .tags .tag a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .content .post .tags .tag a:active {
|
||||||
|
color: #dadada; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .content .list ul li .title {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .content .list ul li .title:hover, body.colorscheme-dark .content .list ul li .title:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .content .centered .about ul li a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .content .centered .about ul li a:hover, body.colorscheme-dark .content .centered .about ul li a:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .content .post .tags .tag {
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-auto .content .post .tags .tag a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .content .post .tags .tag a:active {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .content .list ul li .title {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .content .list ul li .title:hover, body.colorscheme-auto .content .list ul li .title:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
body.colorscheme-auto .content .centered .about ul li a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .content .centered .about ul li a:hover, body.colorscheme-auto .content .centered .about ul li a:focus {
|
||||||
|
color: #42a5f5; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .notice .notice-title {
|
||||||
|
border-bottom: 1px solid #212121; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .notice .notice-title {
|
||||||
|
border-bottom: 1px solid #212121; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .navigation a,
|
||||||
|
body.colorscheme-dark .navigation span {
|
||||||
|
color: #dadada; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .navigation a:hover, body.colorscheme-dark .navigation a:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
body.colorscheme-dark .navigation .navigation-list {
|
||||||
|
background-color: #212121;
|
||||||
|
border-top: solid 2px #424242;
|
||||||
|
border-bottom: solid 2px #424242; } }
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
body.colorscheme-dark .navigation .navigation-list .menu-separator {
|
||||||
|
border-top: 2px solid #dadada; } }
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
body.colorscheme-dark .navigation #menu-toggle:checked + label > i {
|
||||||
|
color: #424242; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .navigation i {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .navigation i:hover, body.colorscheme-dark .navigation i:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .navigation .menu-button i:hover, body.colorscheme-dark .navigation .menu-button i:focus {
|
||||||
|
color: #dadada; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .navigation a,
|
||||||
|
body.colorscheme-auto .navigation span {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .navigation a:hover, body.colorscheme-auto .navigation a:focus {
|
||||||
|
color: #42a5f5; } }
|
||||||
|
|
||||||
|
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
|
||||||
|
body.colorscheme-auto .navigation .navigation-list {
|
||||||
|
background-color: #212121;
|
||||||
|
border-top: solid 2px #424242;
|
||||||
|
border-bottom: solid 2px #424242; } }
|
||||||
|
|
||||||
|
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
|
||||||
|
body.colorscheme-auto .navigation .navigation-list .menu-separator {
|
||||||
|
border-top: 2px solid #dadada; } }
|
||||||
|
|
||||||
|
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
|
||||||
|
body.colorscheme-auto .navigation #menu-toggle:checked + label > i {
|
||||||
|
color: #424242; } }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .navigation i {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .navigation i:hover, body.colorscheme-auto .navigation i:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
body.colorscheme-auto .navigation .menu-button i:hover, body.colorscheme-auto .navigation .menu-button i:focus {
|
||||||
|
color: #dadada; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .tabs label.tab-label {
|
||||||
|
background-color: #424242;
|
||||||
|
border-color: #4f4f4f; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .tabs input.tab-input:checked + label.tab-label {
|
||||||
|
background-color: #212121; }
|
||||||
|
|
||||||
|
body.colorscheme-dark .tabs .tab-content {
|
||||||
|
background-color: #212121;
|
||||||
|
border-color: #4f4f4f; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .tabs label.tab-label {
|
||||||
|
background-color: #424242;
|
||||||
|
border-color: #4f4f4f; }
|
||||||
|
body.colorscheme-auto .tabs input.tab-input:checked + label.tab-label {
|
||||||
|
background-color: #212121; }
|
||||||
|
body.colorscheme-auto .tabs .tab-content {
|
||||||
|
background-color: #212121;
|
||||||
|
border-color: #4f4f4f; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .taxonomy-element {
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-dark .taxonomy-element a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-dark .taxonomy-element a:active {
|
||||||
|
color: #dadada; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .taxonomy-element {
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-auto .taxonomy-element a {
|
||||||
|
color: #dadada; }
|
||||||
|
body.colorscheme-auto .taxonomy-element a:active {
|
||||||
|
color: #dadada; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .footer a {
|
||||||
|
color: #42a5f5; }
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .footer a {
|
||||||
|
color: #42a5f5; } }
|
||||||
|
|
||||||
|
body.colorscheme-dark .float-container a {
|
||||||
|
color: #dadada;
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
|
||||||
|
color: #42a5f5; }
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
|
||||||
|
color: #dadada; } }
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.colorscheme-auto .float-container a {
|
||||||
|
color: #dadada;
|
||||||
|
background-color: #424242; }
|
||||||
|
body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
|
||||||
|
color: #42a5f5; } }
|
||||||
|
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
|
||||||
|
body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
|
||||||
|
color: #dadada; } }
|
||||||
|
|
||||||
|
/*# sourceMappingURL=coder-dark.css.map */
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"Target":"css/coder-dark.css","MediaType":"text/css","Data":{}}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
|||||||
|
{"Target":"css/coder.css","MediaType":"text/css","Data":{}}
|
||||||
48
i18n/ar.toml
48
i18n/ar.toml
@@ -1,11 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "فئة"
|
one = "فئة"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "وَسم"
|
one = "وَسم"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "سلسلة"
|
one = "سلسلة"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
|
[authors]
|
||||||
|
one = "الكاتب"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "المنشورات"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
other = "تستغرق {{ .Count }} د"
|
other = "تستغرق {{ .Count }} د"
|
||||||
@@ -19,14 +29,32 @@ other = "هذه الصفحة غير موجودة"
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "بإمكانك العودة إلى <a href=\"{{ . }}\">homepage</a>."
|
other = "بإمكانك العودة إلى <a href=\"{{ . }}\">homepage</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "بواسطة"
|
other = "بواسطة"
|
||||||
|
|
||||||
[author]
|
|
||||||
other = "الكاتب"
|
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "انظر أيضاً"
|
other = "انظر أيضاً"
|
||||||
|
|
||||||
[posts]
|
[note]
|
||||||
other = "المنشورات"
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
42
i18n/bn.toml
42
i18n/bn.toml
@@ -1,14 +1,18 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "বিভাগ"
|
one = "বিভাগ"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "ট্যাগ"
|
one = "ট্যাগ"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "সিরিজ"
|
one = "সিরিজ"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "লেখক"
|
one = "লেখক"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
[posts]
|
[posts]
|
||||||
other = "সব পোস্ট"
|
other = "সব পোস্ট"
|
||||||
@@ -26,8 +30,32 @@ other = "দুঃখিত, কাঙ্ক্ষিত পাতাটির
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "আপনি <a href=\"{{ . }}\">নীড়পাতায়</a> ফিরে যেতে পারেন"
|
other = "আপনি <a href=\"{{ . }}\">নীড়পাতায়</a> ফিরে যেতে পারেন"
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "চালনায়"
|
other = "চালনায়"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "আরও দেখুন"
|
other = "আরও দেখুন"
|
||||||
|
|
||||||
|
[note]
|
||||||
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
44
i18n/cs.toml
44
i18n/cs.toml
@@ -1,11 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "kategorie"
|
one = "kategorie"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "tag"
|
one = "tag"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "série"
|
one = "série"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
|
[authors]
|
||||||
|
one = "author"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "posts"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
other = "Délka čtení: {{ .Count }}"
|
other = "Délka čtení: {{ .Count }}"
|
||||||
@@ -19,8 +29,32 @@ other = "Omlouváme se, stránka nebyla nalezena."
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "Můžete se vrátit na <a href=\"{{ . }}\">homepage</a>."
|
other = "Můžete se vrátit na <a href=\"{{ . }}\">homepage</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Stránka používá"
|
other = "Stránka používá"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "Podívejte se také na"
|
other = "Podívejte se také na"
|
||||||
|
|
||||||
|
[note]
|
||||||
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
47
i18n/de.toml
47
i18n/de.toml
@@ -1,11 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "Kategorie"
|
one = "Kategorie"
|
||||||
|
other = "Kategorien"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "Tag"
|
one = "Tag"
|
||||||
|
other = "Tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "Serie"
|
one = "Serie"
|
||||||
|
other = "Serien"
|
||||||
|
|
||||||
|
[authors]
|
||||||
|
one = "Autor"
|
||||||
|
other = "Autoren"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "Beiträge"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
one = "Eine Minute Lesezeit"
|
one = "Eine Minute Lesezeit"
|
||||||
@@ -20,5 +30,32 @@ other = "Tut mir Leid, die Seite existiert leider nicht."
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "Du kannst hier zurück zur <a href=\"{{ . }}\">Startseite</a>."
|
other = "Du kannst hier zurück zur <a href=\"{{ . }}\">Startseite</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Lizenziert unter"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Gestaltet mit"
|
other = "Gestaltet mit"
|
||||||
|
|
||||||
|
[see_also]
|
||||||
|
other = "Siehe auch in"
|
||||||
|
|
||||||
|
[note]
|
||||||
|
other = "Bemerkung"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "Tipp"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "Beispiel"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "Frage"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "Info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "Warnung"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "Fehler"
|
||||||
|
|||||||
42
i18n/en.toml
42
i18n/en.toml
@@ -1,14 +1,18 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "category"
|
one = "category"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "tag"
|
one = "tag"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
|
one = "series"
|
||||||
other = "series"
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "author"
|
one = "author"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
[posts]
|
[posts]
|
||||||
other = "posts"
|
other = "posts"
|
||||||
@@ -24,10 +28,34 @@ other = "Page Not Found"
|
|||||||
other = "Sorry, this page does not exist."
|
other = "Sorry, this page does not exist."
|
||||||
|
|
||||||
[head_back]
|
[head_back]
|
||||||
other = "You can head back to <a href=\"{{ . }}\">homepage</a>."
|
other = "You can head back to the <a href=\"{{ . }}\">homepage</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Powered by"
|
other = "Powered by"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "See also in"
|
other = "See also in"
|
||||||
|
|
||||||
|
[note]
|
||||||
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
42
i18n/es.toml
42
i18n/es.toml
@@ -1,14 +1,18 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "categoría"
|
one = "categoría"
|
||||||
|
other = "categorías"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "etiqueta"
|
one = "etiqueta"
|
||||||
|
other = "etiquetas"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "serie"
|
one = "serie"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "autor"
|
one = "autor"
|
||||||
|
other = "autores"
|
||||||
|
|
||||||
[posts]
|
[posts]
|
||||||
other = "publicaciones"
|
other = "publicaciones"
|
||||||
@@ -26,8 +30,32 @@ other = "Disculpa, la página no existe."
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "Puedes regresar a la <a href=\"{{ . }}\">página inicial</a>."
|
other = "Puedes regresar a la <a href=\"{{ . }}\">página inicial</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Desarrollado por"
|
other = "Desarrollado por"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "También ver en"
|
other = "También ver en"
|
||||||
|
|
||||||
|
[note]
|
||||||
|
other = "nota"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "consejo"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "ejemplo"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "pregunta"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "información"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "advertencia"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
46
i18n/fi.toml
46
i18n/fi.toml
@@ -1,14 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "kategoria"
|
one = "kategoria"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "merkki"
|
one = "merkki"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "sarja"
|
one = "sarja"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "Kirjoittaja"
|
one = "Kirjoittaja"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "Artikkelit"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
one = "Yksi lukuminuutti"
|
one = "Yksi lukuminuutti"
|
||||||
@@ -23,11 +30,32 @@ other = "Valitettavasti tätä sivua ei ole olemassa."
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "Voit palata takaisin <a href=\"{{ . }}\">kotisivulle</a>."
|
other = "Voit palata takaisin <a href=\"{{ . }}\">kotisivulle</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Tarjoaa"
|
other = "Tarjoaa"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "Katso myös"
|
other = "Katso myös"
|
||||||
|
|
||||||
[posts]
|
[note]
|
||||||
other = "Artikkelit"
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
44
i18n/fr.toml
44
i18n/fr.toml
@@ -1,14 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "catégorie"
|
one = "catégorie"
|
||||||
|
other = "catégories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "tag"
|
one = "tag"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
|
one = "série"
|
||||||
other = "séries"
|
other = "séries"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "auteur"
|
one = "auteur"
|
||||||
|
other = "auteurs"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "articles"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
one = "Une minute de lecture"
|
one = "Une minute de lecture"
|
||||||
@@ -23,11 +30,32 @@ other = "Désolé, cette page n'existe pas."
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "Vous pouvez revenir à <a href=\"{{ . }}\">l'accueil</a>."
|
other = "Vous pouvez revenir à <a href=\"{{ . }}\">l'accueil</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "Propulsé par"
|
other = "Propulsé par"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "Voir aussi dans"
|
other = "Voir aussi dans"
|
||||||
|
|
||||||
[posts]
|
[note]
|
||||||
other = "Articles"
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
45
i18n/he.toml
45
i18n/he.toml
@@ -1,14 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "קטגוריה"
|
one = "קטגוריה"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "תגית"
|
one = "תגית"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "סדרה"
|
one = "סדרה"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "סופר"
|
one = "סופר"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "פוסטים"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
one = "דקה אחת לקרוא"
|
one = "דקה אחת לקרוא"
|
||||||
@@ -23,12 +30,32 @@ other = "מצטערים, דף אינטרנט זה אינו קיים"
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = " אתה יכול לחזור<a href=\"{{ . }}\">לדף הבית</a>."
|
other = " אתה יכול לחזור<a href=\"{{ . }}\">לדף הבית</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "מופעל על ידי"
|
other = "מופעל על ידי"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "רואה עוד ב"
|
other = "רואה עוד ב"
|
||||||
|
|
||||||
[posts]
|
[note]
|
||||||
other = "פוסטים"
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
46
i18n/hi.toml
46
i18n/hi.toml
@@ -1,14 +1,21 @@
|
|||||||
[category]
|
[categories]
|
||||||
other = "श्रेणी"
|
one = "श्रेणी"
|
||||||
|
other = "categories"
|
||||||
|
|
||||||
[tag]
|
[tags]
|
||||||
other = "टैग"
|
one = "टैग"
|
||||||
|
other = "tags"
|
||||||
|
|
||||||
[series]
|
[series]
|
||||||
other = "श्रृंखला"
|
one = "श्रृंखला"
|
||||||
|
other = "series"
|
||||||
|
|
||||||
[author]
|
[authors]
|
||||||
other = "लेखक"
|
one = "लेखक"
|
||||||
|
other = "authors"
|
||||||
|
|
||||||
|
[posts]
|
||||||
|
other = "सामग्री"
|
||||||
|
|
||||||
[reading_time]
|
[reading_time]
|
||||||
one = "एक पढ़ने का समय"
|
one = "एक पढ़ने का समय"
|
||||||
@@ -23,11 +30,32 @@ other = "क्षमा करें, यह पृष्ठ मौजूद
|
|||||||
[head_back]
|
[head_back]
|
||||||
other = "आप वापस आ सकते हैं <a href=\"{{ . }}\">मुखपृष्ठ</a>."
|
other = "आप वापस आ सकते हैं <a href=\"{{ . }}\">मुखपृष्ठ</a>."
|
||||||
|
|
||||||
|
[licensed_under]
|
||||||
|
other = "Licensed under"
|
||||||
|
|
||||||
[powered_by]
|
[powered_by]
|
||||||
other = "द्वारा संचालित"
|
other = "द्वारा संचालित"
|
||||||
|
|
||||||
[see_also]
|
[see_also]
|
||||||
other = "यह भी देखें"
|
other = "यह भी देखें"
|
||||||
|
|
||||||
[posts]
|
[note]
|
||||||
other = "सामग्री"
|
other = "note"
|
||||||
|
|
||||||
|
[tip]
|
||||||
|
other = "tip"
|
||||||
|
|
||||||
|
[example]
|
||||||
|
other = "example"
|
||||||
|
|
||||||
|
[question]
|
||||||
|
other = "question"
|
||||||
|
|
||||||
|
[info]
|
||||||
|
other = "info"
|
||||||
|
|
||||||
|
[warning]
|
||||||
|
other = "warning"
|
||||||
|
|
||||||
|
[error]
|
||||||
|
other = "error"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user