Update persona for 2020

Signed-off-by: René Jochum <rene@jochum.dev>
master
René Jochum 4 years ago
parent 25dd8b83a5
commit fd997add89

@ -1,5 +1,5 @@
# Build public with hugo
FROM registry.jochum.dev/jguyomard/hugo-builder:latest
FROM jojomi/hugo:latest
COPY . /build

@ -1,3 +1,3 @@
#!/bin/sh
go get github.com/spf13/hugo
$GOPATH/bin/hugo server --bind="::1" -b http://localhost:3031/ -w -D -v -t persona --disableFastRender
go get github.com/gohugoio/hugo
$GOPATH/bin/hugo server --bind="::1" -b http://localhost:1313 -v -t persona --disableFastRender

@ -47,7 +47,7 @@ sudo apt install mariadb-server mariadb-client mariadb-backup
Set Password with mysql_secure_installation:
```
```bash
pcdummy@rancher01:~$ sudo mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
@ -121,7 +121,7 @@ Thanks for using MariaDB!
Stop Mariadb
```
```bash
sudo systemctl stop mariadb
```
@ -134,7 +134,7 @@ sudo sed -i 's/bind-address\t\t= 127.0.0.1/#bind-address\t\t= 127.0.0.1/g' /etc/
Enable Galera, Paste the following into /etc/mysql/mariadb.conf.d/99-cluster.cnf
```conf
```INI
[galera]
wsrep_on = on
@ -156,11 +156,11 @@ And change the ip addresse for `wsrep_cluster_address`
Some tuning if you use this Galera cluster for other purposes
```
```bash
sudo nano /etc/mysql/mariadb.conf.d/98-tuning.cnf
```
```conf
```INI
[mysqld]
key_buffer_size=256M
thread_stack=192K
@ -201,7 +201,7 @@ sudo add-apt-repository 'deb [arch=amd64] http://downloads.mariadb.com/MaxScale/
sudo apt install maxscale
```
```
```sql
mysql -u root -p
CREATE USER 'maxscale'@'%' IDENTIFIED BY 'SuperSecretPassword';
GRANT SELECT ON mysql.user TO 'maxscale'@'%';
@ -226,7 +226,7 @@ sudo chown maxscale: /var/lib/maxscale/.secrets
/etc/maxscale.cnf
```conf
```INI
# MaxScale documentation:
# https://mariadb.com/kb/en/mariadb-enterprise/mariadb-maxscale-22/

@ -0,0 +1 @@
node_modules/

@ -1,9 +0,0 @@
[submodule "vendor/lightslider"]
path = vendor/lightslider
url = https://github.com/sachinchoolur/lightslider.git
[submodule "vendor/lightGallery"]
path = vendor/lightgallery
url = https://github.com/sachinchoolur/lightGallery.git
[submodule "vendor/fontawesome"]
path = vendor/fontawesome
url = https://github.com/FortAwesome/Font-Awesome.git

@ -0,0 +1,41 @@
module.exports = function (grunt) {
'use strict';
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.initConfig({
copy: {
main: {
files: [
// jQuery
{ expand: true, flatten: true, src: ['node_modules/jquery/dist/jquery.min.js'], dest: 'static/static/js/' },
// Bootstrap
{ expand: true, flatten: true, src: ['node_modules/bootstrap/dist/css/bootstrap.min.css'], dest: 'static/static/css/' },
{ expand: true, flatten: true, src: ['node_modules/bootstrap/dist/css/bootstrap-theme.min.css'], dest: 'static/static/css/' },
{ expand: true, flatten: true, src: ['node_modules/bootstrap/dist/js/bootstrap.min.js'], dest: 'static/static/js/' },
// lightgallery
{ expand: true, flatten: true, src: ['node_modules/lightgallery/dist/css/lightgallery.min.css'], dest: 'static/static/css/' },
{ expand: true, flatten: true, src: ['node_modules/lightgallery/dist/js/lightgallery.min.js'], dest: 'static/static/js/' },
{ expand: true, flatten: true, src: ['node_modules/lightgallery/dist/fonts/*'], dest: 'static/static/fonts/' },
// lightslider
{ expand: true, flatten: true, src: ['node_modules/lightslider/dist/css/lightslider.min.css'], dest: 'static/static/css/' },
{ expand: true, flatten: true, src: ['node_modules/lightslider/dist/js/lightslider.min.js'], dest: 'static/static/js/' },
{ expand: true, flatten: true, src: ['node_modules/lightslider/dist/img/*'], dest: 'static/static/img/' },
// Fontawesome 4.x
{ expand: true, flatten: true, src: ['node_modules/font-awesome/css/font-awesome.min.css'], dest: 'static/static/css/' },
{ expand: true, flatten: true, src: ['node_modules/font-awesome/fonts/*'], dest: 'static/static/fonts/' },
// fortawesome
// { expand: true, flatten: true, src: ['node_modules/@fortawesome/fontawesome-free/css/all.min.css'], dest: 'static/static/css/' },
// { expand: true, flatten: true, src: ['node_modules/@fortawesome/fontawesome-free/webfonts/*'], dest: 'static/static/webfonts/' },
],
},
},
});
grunt.registerTask('default', ['copy:main']);
};

@ -9,7 +9,8 @@
<div class="container">
<div class="row">
<div class="col-md-12">
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
{{- $mainSections := .Site.Params.mainSections }}
{{- $paginator := .Paginate (where .Site.RegularPages "Type" "in" $mainSections) }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}

@ -1,20 +1,19 @@
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/thirdparties.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/jquery.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}static/js/jquery.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/lightGallery.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/lightslider.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}static/js/lightgallery.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}static/js/lightslider.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/bootstrap.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/main.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}static/js/bootstrap.min.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}static/js/main.js"></script>
<script type="text/javascript" src="{{ .Site.BaseURL }}/static/js/highlight.pack.js"></script>
<script>
<!-- <script type="text/javascript" src="{{ .Site.BaseURL }}static/js/highlight.pack.min.js"></script> -->
<!-- <script>
hljs.configure({
languages: ['bash', 'html']
});
hljs.initHighlightingOnLoad();
</script>
</script> -->
{{ partial "analytics.html" }}
</body>
</html>

@ -1,20 +1,23 @@
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/bootstrap.min.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/bootstrap-theme.min.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/bootstrap.min.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/bootstrap-theme.min.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/persona-icons.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/persona-icons.css" rel="stylesheet"/>
<!-- Fonts ni style.css -->
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/lato-font.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/notoserif-font.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/font-awesome.min.css" rel="stylesheet" />
<link type="text/css" href="{{ .Site.BaseURL }}static/css/lato-font.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/notoserif-font.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/style.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/responsive.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/style.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/responsive.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}/static/css/highlight/googlecode.css" rel="stylesheet"/>
<link type="text/css" href="{{ .Site.BaseURL }}static/css/github-highlight.css" rel="stylesheet"/>
<!-- <link type="text/css" href="{{ .Site.BaseURL }}static/css/highlight/github.css" rel="stylesheet"/> -->
<!-- start hugo lightslider -->
<!-- you need this jquery include if you want lightslider without includejs="true". -->
<script src="{{ $.Site.BaseURL }}/static/js/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/static/css/lightGallery.css" />
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/static/css/lightslider.css" />
<script src="{{ $.Site.BaseURL }}static/js/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}static/css/lightgallery.min.css" />
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}static/css/lightslider.min.css" />
<!-- end hugo lightslider -->

@ -1,4 +1,4 @@
{{ if (.Prev) or (.Next) }}
{{ if or (.Prev) (.Next) }}
<div class="paginating_area">
<ul>
{{ if .Prev }}<li><a href="{{ .Prev.RelPermalink }}" class="p_arrow" title="Previous blog post: {{ .Prev.Title }}"><i>&lsaquo;</i></a></li>{{ end }}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,16 @@
{
"name": "@pcdummy/persona",
"version": "1.0.0",
"description": "Persona theme",
"author": "",
"license": "MIT",
"dependencies": {
"bootstrap": "^3.4.1",
"font-awesome": "^4.7.0",
"grunt": "^1.3.0",
"grunt-contrib-copy": "^1.0.0",
"jquery": "^3.5.1",
"lightgallery": "^1.8.3",
"lightslider": "^1.1.6"
}
}

@ -1 +0,0 @@
../../../vendor/bootstrap/css/bootstrap-theme.min.css

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
../../../vendor/bootstrap/css/bootstrap.min.css

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,71 @@
/* Background */ .chroma { background-color: #ffffff }
/* Error */ .chroma .err { color: #a61717; background-color: #e3d2d2 }
/* LineTableTD */ .chroma .lntd { ; vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { ; border-spacing: 0; padding: 0; margin: 0; border: 0; width: 100%; overflow: auto; display: block; }
/* LineHighlight */ .chroma .hl { background-color: #ffffcc; display: block; width: 100% }
/* LineNumbersTable */ .chroma .lnt { ; margin-right: 0.4em; padding: 0 0.4em 0 0.4em; display: block; }
/* LineNumbers */ .chroma .ln { ; margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
/* Keyword */ .chroma .k { color: #000000; font-weight: bold }
/* KeywordConstant */ .chroma .kc { color: #000000; font-weight: bold }
/* KeywordDeclaration */ .chroma .kd { color: #000000; font-weight: bold }
/* KeywordNamespace */ .chroma .kn { color: #000000; font-weight: bold }
/* KeywordPseudo */ .chroma .kp { color: #000000; font-weight: bold }
/* KeywordReserved */ .chroma .kr { color: #000000; font-weight: bold }
/* KeywordType */ .chroma .kt { color: #445588; font-weight: bold }
/* NameAttribute */ .chroma .na { color: #008080 }
/* NameBuiltin */ .chroma .nb { color: #0086b3 }
/* NameBuiltinPseudo */ .chroma .bp { color: #999999 }
/* NameClass */ .chroma .nc { color: #445588; font-weight: bold }
/* NameConstant */ .chroma .no { color: #008080 }
/* NameDecorator */ .chroma .nd { color: #3c5d5d; font-weight: bold }
/* NameEntity */ .chroma .ni { color: #800080 }
/* NameException */ .chroma .ne { color: #990000; font-weight: bold }
/* NameFunction */ .chroma .nf { color: #990000; font-weight: bold }
/* NameLabel */ .chroma .nl { color: #990000; font-weight: bold }
/* NameNamespace */ .chroma .nn { color: #555555 }
/* NameTag */ .chroma .nt { color: #000080 }
/* NameVariable */ .chroma .nv { color: #008080 }
/* NameVariableClass */ .chroma .vc { color: #008080 }
/* NameVariableGlobal */ .chroma .vg { color: #008080 }
/* NameVariableInstance */ .chroma .vi { color: #008080 }
/* LiteralString */ .chroma .s { color: #dd1144 }
/* LiteralStringAffix */ .chroma .sa { color: #dd1144 }
/* LiteralStringBacktick */ .chroma .sb { color: #dd1144 }
/* LiteralStringChar */ .chroma .sc { color: #dd1144 }
/* LiteralStringDelimiter */ .chroma .dl { color: #dd1144 }
/* LiteralStringDoc */ .chroma .sd { color: #dd1144 }
/* LiteralStringDouble */ .chroma .s2 { color: #dd1144 }
/* LiteralStringEscape */ .chroma .se { color: #dd1144 }
/* LiteralStringHeredoc */ .chroma .sh { color: #dd1144 }
/* LiteralStringInterpol */ .chroma .si { color: #dd1144 }
/* LiteralStringOther */ .chroma .sx { color: #dd1144 }
/* LiteralStringRegex */ .chroma .sr { color: #009926 }
/* LiteralStringSingle */ .chroma .s1 { color: #dd1144 }
/* LiteralStringSymbol */ .chroma .ss { color: #990073 }
/* LiteralNumber */ .chroma .m { color: #009999 }
/* LiteralNumberBin */ .chroma .mb { color: #009999 }
/* LiteralNumberFloat */ .chroma .mf { color: #009999 }
/* LiteralNumberHex */ .chroma .mh { color: #009999 }
/* LiteralNumberInteger */ .chroma .mi { color: #009999 }
/* LiteralNumberIntegerLong */ .chroma .il { color: #009999 }
/* LiteralNumberOct */ .chroma .mo { color: #009999 }
/* Operator */ .chroma .o { color: #000000; font-weight: bold }
/* OperatorWord */ .chroma .ow { color: #000000; font-weight: bold }
/* Comment */ .chroma .c { color: #999988; font-style: italic }
/* CommentHashbang */ .chroma .ch { color: #999988; font-style: italic }
/* CommentMultiline */ .chroma .cm { color: #999988; font-style: italic }
/* CommentSingle */ .chroma .c1 { color: #999988; font-style: italic }
/* CommentSpecial */ .chroma .cs { color: #999999; font-weight: bold; font-style: italic }
/* CommentPreproc */ .chroma .cp { color: #999999; font-weight: bold; font-style: italic }
/* CommentPreprocFile */ .chroma .cpf { color: #999999; font-weight: bold; font-style: italic }
/* GenericDeleted */ .chroma .gd { color: #000000; background-color: #ffdddd }
/* GenericEmph */ .chroma .ge { color: #000000; font-style: italic }
/* GenericError */ .chroma .gr { color: #aa0000 }
/* GenericHeading */ .chroma .gh { color: #999999 }
/* GenericInserted */ .chroma .gi { color: #000000; background-color: #ddffdd }
/* GenericOutput */ .chroma .go { color: #888888 }
/* GenericPrompt */ .chroma .gp { color: #555555 }
/* GenericStrong */ .chroma .gs { font-weight: bold }
/* GenericSubheading */ .chroma .gu { color: #aaaaaa }
/* GenericTraceback */ .chroma .gt { color: #aa0000 }
/* TextWhitespace */ .chroma .w { color: #bbbbbb }

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/arta.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/ascetic.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-dune.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-dune.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-forest.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-forest.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-heath.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-heath.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-lakeside.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-lakeside.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-seaside.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/atelier-seaside.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/brown_paper.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/brown_papersq.png

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/codepen-embed.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/color-brewer.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/default.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/docco.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/far.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/foundation.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/github.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/googlecode.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/hybrid.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/idea.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/ir_black.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/kimbie.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/kimbie.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/magula.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/mono-blue.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/monokai.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/monokai_sublime.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/obsidian.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/paraiso.dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/paraiso.light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/pojoaque.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/pojoaque.jpg

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/railscasts.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/rainbow.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/school_book.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/school_book.png

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/solarized_dark.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/solarized_light.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/sunburst.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/tomorrow-night-blue.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/tomorrow-night-bright.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/tomorrow-night-eighties.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/tomorrow-night.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/tomorrow.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/vs.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/xcode.css

@ -1 +0,0 @@
../../../../vendor/highlightjs/styles/zenburn.css

@ -1 +0,0 @@
../../../vendor/lightgallery/light-gallery/css/lightGallery.css

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
../../../vendor/lightslider/dist/css/lightslider.css

File diff suppressed because one or more lines are too long

@ -1 +0,0 @@
../../../vendor/lightgallery/light-gallery/fonts/Slide-icons.eot

@ -1 +0,0 @@
../../../vendor/lightgallery/light-gallery/fonts/Slide-icons.svg

@ -1 +0,0 @@
../../../vendor/lightgallery/light-gallery/fonts/Slide-icons.ttf

@ -1 +0,0 @@
../../../vendor/lightgallery/light-gallery/fonts/Slide-icons.woff

@ -1 +0,0 @@
../../../vendor/fontawesome/fonts/fontawesome-webfont.eot

@ -1 +0,0 @@
../../../vendor/fontawesome/fonts/fontawesome-webfont.svg

Before

Width:  |  Height:  |  Size: 57 B

After

Width:  |  Height:  |  Size: 434 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 57 B

After

Width:  |  Height:  |  Size: 434 KiB

@ -1 +0,0 @@
../../../vendor/fontawesome/fonts/fontawesome-webfont.ttf

@ -1 +0,0 @@
../../../vendor/fontawesome/fonts/fontawesome-webfont.woff

@ -1 +0,0 @@
../../../vendor/fontawesome/fonts/fontawesome-webfont.woff2

@ -1 +0,0 @@
../../../vendor/bootstrap/fonts/glyphicons-halflings-regular.eot

@ -1 +0,0 @@
../../../vendor/bootstrap/fonts/glyphicons-halflings-regular.svg

@ -1 +0,0 @@
../../../vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf

@ -1 +0,0 @@
../../../vendor/bootstrap/fonts/glyphicons-halflings-regular.woff

@ -1 +0,0 @@
../../../vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2

@ -0,0 +1,51 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
<json>
<![CDATA[
{
"fontFamily": "lg",
"majorVersion": 1,
"minorVersion": 0,
"fontURL": "https://github.com/sachinchoolur/lightGallery",
"copyright": "sachin",
"license": "MLT",
"licenseURL": "http://opensource.org/licenses/MIT",
"description": "Font generated by IcoMoon.",
"version": "Version 1.0",
"fontId": "lg",
"psName": "lg",
"subFamily": "Regular",
"fullName": "lg"
}
]]>
</json>
</metadata>
<defs>
<font id="lg" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe01a;" glyph-name="pause_circle_outline" data-tags="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM384 256.667v340h86v-340h-86z" />
<glyph unicode="&#xe01d;" glyph-name="play_circle_outline" data-tags="play_circle_outline" d="M512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM426 234.667v384l256-192z" />
<glyph unicode="&#xe033;" glyph-name="stack-2" data-tags="stack-2" d="M384 853.334h426.667q53 0 90.5-37.5t37.5-90.5v-426.667q0-53-37.5-90.5t-90.5-37.5h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 53 37.5 90.5t90.5 37.5zM170.667 675.334v-547.333q0-17.667 12.5-30.167t30.167-12.5h547.333q-13.333-37.667-46.333-61.5t-74.333-23.833h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 41.333 23.833 74.333t61.5 46.333zM810.667 768h-426.667q-17.667 0-30.167-12.5t-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5h426.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5z" />
<glyph unicode="&#xe070;" glyph-name="clear" data-tags="clear" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
<glyph unicode="&#xe094;" glyph-name="arrow-left" data-tags="arrow-left" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
<glyph unicode="&#xe095;" glyph-name="arrow-right" data-tags="arrow-right" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
<glyph unicode="&#xe0f2;" glyph-name="vertical_align_bottom" data-tags="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
<glyph unicode="&#xe1ff;" glyph-name="apps" data-tags="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
<glyph unicode="&#xe20c;" glyph-name="fullscreen" data-tags="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
<glyph unicode="&#xe20d;" glyph-name="fullscreen_exit" data-tags="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
<glyph unicode="&#xe311;" glyph-name="zoom_in" data-tags="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe312;" glyph-name="zoom_out" data-tags="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe80d;" glyph-name="share" data-tags="share" d="M768 252.667c68 0 124-56 124-124s-56-126-124-126-124 58-124 126c0 10 0 20 2 28l-302 176c-24-22-54-34-88-34-70 0-128 58-128 128s58 128 128 128c34 0 64-12 88-34l300 174c-2 10-4 20-4 30 0 70 58 128 128 128s128-58 128-128-58-128-128-128c-34 0-64 14-88 36l-300-176c2-10 4-20 4-30s-2-20-4-30l304-176c22 20 52 32 84 32z" />
<glyph unicode="&#xe900;" glyph-name="rotate_left" data-tags="rotate_left" d="M554 764.667q126-16 213-112t87-226-87-226-213-112v86q92 16 153 87t61 165-61 165-153 87v-166l-194 190 194 194v-132zM302 156.667l62 62q46-34 106-44v-86q-96 12-168 68zM260 384.667q10-58 42-106l-60-60q-56 74-68 166h86zM304 574.667q-36-52-44-106h-86q12 90 70 166z" />
<glyph unicode="&#xe901;" glyph-name="rotate_right" data-tags="rotate_right" d="M720 278.667q34 46 44 106h86q-12-92-68-166zM554 174.667q60 10 106 44l62-62q-72-56-168-68v86zM850 468.667h-86q-10 60-44 106l62 60q58-72 68-166zM664 702.667l-194-190v166q-92-16-153-87t-61-165 61-165 153-87v-86q-126 16-213 112t-87 226 87 226 213 112v132z" />
<glyph unicode="&#xe902;" glyph-name="swap_horiz" data-tags="swap_horiz" d="M896 554.667l-170-170v128h-300v84h300v128zM298 468.667v-128h300v-84h-300v-128l-170 170z" />
<glyph unicode="&#xe903;" glyph-name="swap_vert" data-tags="swap_vert" d="M384 810.667l170-170h-128v-300h-84v300h-128zM682 212.667h128l-170-170-170 170h128v300h84v-300z" />
<glyph unicode="&#xe904;" glyph-name="facebook-with-circle" data-tags="facebook-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM628.429 612.659h-73.882c-8.755 0-18.483-11.52-18.483-26.829v-53.35h92.416l-13.978-76.083h-78.438v-228.403h-87.194v228.403h-79.104v76.083h79.104v44.749c0 64.205 44.544 116.378 105.677 116.378h73.882v-80.947z" />
<glyph unicode="&#xe905;" glyph-name="google-with-circle" data-tags="google+-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM483.686 249.805c-30.874-15.002-64.102-16.589-76.954-16.589-2.458 0-3.84 0-3.84 0s-1.178 0-2.765 0c-20.070 0-119.962 4.608-119.962 95.59 0 89.395 108.8 96.41 142.131 96.41h0.87c-19.251 25.702-15.258 51.61-15.258 51.61-1.69-0.102-4.147-0.205-7.168-0.205-12.544 0-36.762 1.997-57.549 15.411-25.498 16.384-38.4 44.288-38.4 82.893 0 109.107 119.142 113.51 120.32 113.613h118.989v-2.611c0-13.312-23.91-15.923-40.192-18.125-5.53-0.819-16.64-1.894-19.763-3.482 30.157-16.128 35.021-41.421 35.021-79.104 0-42.906-16.794-65.587-34.611-81.51-11.059-9.882-19.712-17.613-19.712-28.006 0-10.189 11.878-20.582 25.702-32.717 22.579-19.917 53.555-47.002 53.555-92.723 0-47.258-20.326-81.050-60.416-100.454zM742.4 460.8h-76.8v-76.8h-51.2v76.8h-76.8v51.2h76.8v76.8h51.2v-76.8h76.8v-51.2zM421.018 401.92c-2.662 0-5.325-0.102-8.038-0.307-22.733-1.69-43.725-10.189-58.88-24.013-15.053-13.619-22.733-30.822-21.658-48.179 2.304-36.403 41.37-57.702 88.832-54.323 46.694 3.379 77.824 30.31 75.571 66.714-2.15 34.202-31.898 60.109-75.827 60.109zM465.766 599.808c-12.39 43.52-32.358 56.422-63.386 56.422-3.328 0-6.707-0.512-9.933-1.382-13.466-3.84-24.166-15.053-30.106-31.744-6.093-16.896-6.451-34.509-1.229-54.579 9.472-35.891 34.97-61.901 60.672-61.901 3.379 0 6.758 0.41 9.933 1.382 28.109 7.885 45.722 50.79 34.048 91.802z" />
<glyph unicode="&#xe906;" glyph-name="pinterest-with-circle" data-tags="pinterest-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM545.638 344.32c-31.539 2.406-44.749 18.022-69.427 32.973-13.568-71.219-30.157-139.52-79.309-175.206-15.206 107.725 22.221 188.518 39.629 274.381-29.645 49.92 3.533 150.323 66.099 125.645 76.954-30.515-66.662-185.6 29.747-205.005 100.659-20.173 141.773 174.694 79.36 237.978-90.214 91.494-262.502 2.099-241.306-128.87 5.12-32 38.246-41.728 13.21-85.914-57.702 12.8-74.957 58.317-72.704 118.989 3.533 99.328 89.242 168.909 175.155 178.483 108.698 12.083 210.688-39.885 224.819-142.182 15.821-115.405-49.101-240.282-165.274-231.27z" />
<glyph unicode="&#xe907;" glyph-name="twitter-with-circle" data-tags="twitter-with-circle" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM711.936 549.683c0.205-4.198 0.256-8.397 0.256-12.493 0-128-97.331-275.507-275.405-275.507-54.682 0-105.574 15.974-148.378 43.52 7.526-0.922 15.258-1.28 23.091-1.28 45.363 0 87.091 15.411 120.218 41.421-42.342 0.819-78.080 28.774-90.419 67.174 5.888-1.075 11.93-1.69 18.176-1.69 8.806 0 17.408 1.178 25.498 3.379-44.288 8.909-77.67 48.026-77.67 94.925v1.178c13.056-7.219 28.006-11.622 43.878-12.134-26.010 17.408-43.059 47.002-43.059 80.64 0 17.715 4.762 34.406 13.107 48.691 47.77-58.573 119.040-97.075 199.526-101.222-1.69 7.117-2.509 14.49-2.509 22.118 0 53.402 43.315 96.819 96.819 96.819 27.802 0 52.992-11.776 70.656-30.618 22.067 4.403 42.752 12.39 61.44 23.501-7.219-22.579-22.528-41.574-42.547-53.606 19.61 2.406 38.246 7.578 55.603 15.309-12.954-19.405-29.389-36.506-48.282-50.125z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

@ -1 +0,0 @@
../../../vendor/lightslider/dist/img/controls.png

Before

Width:  |  Height:  |  Size: 49 B

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 B

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -1 +0,0 @@
../../../vendor/bootstrap/js/bootstrap.min.js

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save