Commit a64c82da authored by Simonas's avatar Simonas

in progress

parent a406f548
......@@ -4,6 +4,7 @@ IMAGE_NGINX=nginx:1.15.7
# IMAGE_NGINX=fholzer/nginx-brotli
IMAGE_MYSQL=mariadb:10.3
IMAGE_WORDPRESS=wordpress:php7.2-fpm
IMAGE_WORDPRESS_CLI=wordpress:cli-php7.2
DB_NAME=dev_biuro
DB_HOST=mysql
......
version: '3.7'
services:
nginx:
image: ${IMAGE_NGINX}
container_name: "${PROJECT}-nginx"
networks:
- front
ports:
- '80:80'
- '443:443'
volumes:
- ./nginx:/etc/nginx/conf.d
- ./logs/nginx:/var/log/nginx
- ./certs:/etc/letsencrypt
- ./certs-data:/data/letsencrypt
- ./wp-content/plugins/cookies-warning:/var/www/html/wp-content/plugins/cookies-warning
- ./wp-content/plugins/data-controller:/var/www/html/wp-content/plugins/data-controller
- ./wp-content/plugins/jobs-importer:/var/www/html/wp-content/plugins/jobs-importer
- ./wp-content/plugins/permalink-manager:/var/www/html/wp-content/plugins/permalink-manager
- ./wp-content/plugins/pods:/var/www/html/wp-content/plugins/pods
- ./wp-content/plugins/polylang:/var/www/html/wp-content/plugins/polylang
- ./wp-content/plugins/wordpress-seo:/var/www/html/wp-content/plugins/wordpress-seo
- ./wp-content/themes/biuro/:/var/www/html/wp-content/themes/biuro
- ./wp-content/uploads:/var/www/html/wp-content/uploads
- ./wordpress:/var/www/html
links:
- wordpress
restart: always
mysql:
image: ${IMAGE_MYSQL}
container_name: "${PROJECT}-mysql"
......@@ -57,16 +26,11 @@ services:
- "front"
- "back"
volumes:
- ./wp-content/themes/biuro/:/var/www/html/wp-content/themes/biuro
- ./wp-content/plugins/cookies-warning:/var/www/html/wp-content/plugins/cookies-warning
- ./wp-content/plugins/data-controller:/var/www/html/wp-content/plugins/data-controller
- ./wp-content/plugins/jobs-importer:/var/www/html/wp-content/plugins/jobs-importer
- ./wp-content/plugins/permalink-manager:/var/www/html/wp-content/plugins/permalink-manager
- ./wp-content/plugins/pods:/var/www/html/wp-content/plugins/pods
- ./wp-content/plugins/polylang:/var/www/html/wp-content/plugins/polylang
- ./wp-content/plugins/wordpress-seo:/var/www/html/wp-content/plugins/wordpress-seo
- ./wp-content/themes/biuro/:/var/www/html/wp-content/themes/biuro
- ./wp-content/uploads:/var/www/html/wp-content/uploads
......@@ -93,6 +57,57 @@ services:
- mysql
restart: always
nginx:
image: ${IMAGE_NGINX}
container_name: "${PROJECT}-nginx"
networks:
- front
ports:
- '80:80'
- '443:443'
volumes:
- ./nginx:/etc/nginx/conf.d
- ./logs/nginx:/var/log/nginx
- ./certs:/etc/letsencrypt
- ./certs-data:/data/letsencrypt
- ./wp-content/plugins/cookies-warning:/var/www/html/wp-content/plugins/cookies-warning
- ./wp-content/plugins/data-controller:/var/www/html/wp-content/plugins/data-controller
- ./wp-content/plugins/jobs-importer:/var/www/html/wp-content/plugins/jobs-importer
- ./wp-content/themes/biuro/:/var/www/html/wp-content/themes/biuro
- ./wp-content/uploads:/var/www/html/wp-content/uploads
- ./wordpress:/var/www/html
links:
- wordpress
restart: always
wordpress-cli:
image: ${IMAGE_WORDPRESS_CLI}
container_name: "${PROJECT}-wordpress-cli"
environment:
- APACHE_RUN_USER="www-data"
- APACHE_RUN_GROUP="www-data"
links:
- wordpress
- mysql
networks:
- "back"
volumes:
- ./wp-content/plugins/cookies-warning:/var/www/html/wp-content/plugins/cookies-warning
- ./wp-content/plugins/data-controller:/var/www/html/wp-content/plugins/data-controller
- ./wp-content/plugins/jobs-importer:/var/www/html/wp-content/plugins/jobs-importer
- ./wp-content/themes/biuro/:/var/www/html/wp-content/themes/biuro
- ./wordpress:/var/www/html
- './wp-init.sh:/usr/local/bin/wp-init.sh'
command:
- wp-init.sh
networks:
front:
name: "${PROJECT}-front"
......
This diff is collapsed.
......@@ -4,6 +4,8 @@ import { scripts } from './webpack';
import { server } from './server';
import { serveContent } from './serve-content';
// import { serveFonts } from './serve-fonts'
// import { serveHTML } from './serve-html'
......@@ -23,7 +25,7 @@ import { serveMainCSS } from './serve-css--main';
import { setPaths } from './set-paths';
// const pre = gulp.parallel(gulp.series(serveCoreCSS, serveHTML), servePHP, serveFonts, serveImages, serveOur, serveRoot, serveMainCSS);
const pre = gulp.parallel(serveCoreCSS, serveMainCSS);
const pre = gulp.parallel(serveCoreCSS, serveMainCSS, serveContent);
export const dev = gulp.series(setPaths, clear, pre, server);
......
import gulp from 'gulp';
export function serveContent () {
return gulp.src((`wp-content/content/**/*.*`))
.pipe(gulp.dest('wordpress'));
}
......@@ -10,6 +10,8 @@ import { config } from './webpack';
import conf from './conf';
import { serveContent } from './serve-content';
// import { serveHTML } from './serve-html';
// import { servePHP } from './serve-php';
......@@ -33,15 +35,15 @@ export function server () {
// server: 'wp-content/themes/${conf.name}/',
proxy: conf.proxy,
// httpModule: 'http2',
notify: false,
// notify: false,
https: {
key: conf.certs.key,
cert: conf.certs.cert
},
// files: [
// // `wp-content/themes/${conf.name}/**/*.php`,
// // `wp-content/themes/${conf.name}/css/main.min.css`
// ],
files: [
// `wp-content/themes/${conf.name}/**/*.php`,
// `wp-content/themes/${conf.name}/css/main.min.css`
],
open: false,
port: 2000,
ui: false,
......@@ -56,17 +58,14 @@ export function server () {
]
});
// gulp.watch('./i/**/*.*', { usePolling: true }, gulp.series(serveImages));
// gulp.watch(['./source/biuro/**/*.*', './source/root/**/*.*'], { usePolling: true }, gulp.series(serveOur, serveRoot));
// gulp.watch('./php/**/*.php', { usePolling: true }, gulp.series(servePHP));
// // gulp.watch(['./*.html', './source/**/*.*', '!./source/biuro/**/*.*', '!./source/root/**/*.*', '../wp-content/themes/biuro/css/core.min.css'], gulp.series(serveHTML));
gulp.watch('wp-content/content/**/*.*').on('change', () => {
serveContent();
bs.reload();
});
gulp.watch([`wp-content/themes/${conf.name}/css/**/*.css`, `!wp-content/themes/${conf.name}/css/**/*.min.css`], gulp.parallel(serveCoreCSS, serveMainCSS));
// gulp.watch(`wp-content/themes/${conf.name}/css/core.min.css`).on('change', () => bs.reload());
gulp.watch(`wp-content/themes/${conf.name}/css/core.min.css`).on('change', () => bs.reload());
// gulp.watch(`wp-content/themes/${conf.name}/js/*.js`).on('change', () => browser.reload());
gulp.watch(`wp-content/themes/${conf.name}/js/*.js`).on('change', () => browser.reload());
}
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffffff</TileColor>
</tile>
</msapplication>
</browserconfig>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M555 5052 c-74 -31 -112 -61 -217 -166 -89 -90 -170 -205 -222 -316
-71 -151 -66 13 -66 -2120 l0 -1926 30 -48 c75 -117 308 -317 450 -385 l75
-36 1955 -3 c1302 -2 1967 1 1990 7 32 9 156 86 185 114 7 7 32 30 56 52 104
96 200 222 250 328 l29 63 -2 1900 -3 1900 -29 45 c-85 132 -244 194 -361 140
-40 -18 -427 -289 -433 -303 -2 -5 -8 -8 -14 -8 -5 0 -29 -16 -52 -35 -24 -19
-48 -35 -54 -35 -6 0 -12 -4 -14 -9 -1 -5 -19 -19 -38 -32 -48 -33 -330 -235
-394 -282 -28 -21 -59 -40 -68 -43 -10 -4 -18 -10 -18 -15 0 -15 -44 0 -67 23
-32 33 -35 66 -8 113 36 63 61 109 101 182 62 114 164 297 174 313 6 8 13 22
17 30 3 8 15 27 25 43 11 15 16 27 11 27 -4 0 -3 4 4 8 17 11 73 124 67 134
-3 4 0 8 6 8 6 0 8 5 4 12 -4 7 -7 28 -5 47 5 82 -57 193 -134 241 -83 52 -16
50 -1660 49 -1418 0 -1533 -1 -1570 -17z m1083 -1862 c137 -37 258 -109 336
-199 12 -13 28 -31 37 -40 25 -24 83 -119 108 -175 118 -270 49 -606 -166
-806 -83 -77 -152 -123 -233 -152 -168 -62 -321 -66 -490 -14 -77 24 -195 94
-264 157 -85 77 -180 233 -202 332 -1 4 -2 8 -4 10 -8 10 -22 130 -23 192 0
87 12 155 44 243 24 66 80 172 91 172 4 0 8 5 8 12 0 19 143 151 203 187 172
102 370 131 555 81z m2125 16 c70 -12 89 -17 135 -35 132 -52 247 -140 338
-259 27 -36 82 -143 88 -172 1 -3 4 -9 7 -15 4 -5 10 -28 14 -50 5 -22 10 -47
13 -55 11 -37 9 -222 -4 -276 -17 -75 -53 -174 -71 -195 -7 -8 -13 -19 -13
-24 0 -14 -79 -114 -124 -157 -69 -66 -197 -145 -250 -155 -11 -2 -25 -8 -33
-14 -7 -6 -13 -9 -13 -5 0 3 -11 1 -24 -4 -76 -28 -276 -29 -351 0 -14 5 -25
8 -25 5 0 -2 -24 6 -53 18 -234 96 -401 289 -450 522 -17 76 -17 302 -1 313 5
4 10 21 12 37 4 37 60 160 100 217 112 161 308 283 488 305 27 3 50 6 52 8 4
3 130 -3 165 -9z"/>
</g>
</svg>
{
"name": "Biuro",
"short_name": "Biuro",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
<!--
<link rel="apple-touch-icon" sizes="180x180" href="/wp-content/themes/biuro/i/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/wp-content/themes/biuro/i/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/wp-content/themes/biuro/i/icons/favicon-16x16.png">
<link rel="manifest" href="/wp-content/themes/biuro/i/icons/site.webmanifest">
<link rel="mask-icon" href="/wp-content/themes/biuro/i/icons/safari-pinned-tab.svg" color="#383838">
<link rel="shortcut icon" href="/wp-content/themes/biuro/i/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#fcfcfc">
<meta name="msapplication-config" content="/wp-content/themes/biuro/i/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
-->
<svg xmlns="http://www.w3.org/2000/svg" width="133px" height="78px" viewBox="0 0 108 63" aria-labelledby="svg-title svg-desc">
<title id="svg-title">Biuro</title>
<desc id="svg-desc">Biuro logotipas</desc>
<path d="M12.91 39.688L11.1 39.686v11.7h1.809c0.375 0 0.693-0.131 0.959-0.396 c0.264-0.263 0.398-0.584 0.398-0.962v-8.984c0-0.375-0.134-0.695-0.398-0.963C13.603 39.8 13.3 39.7 12.9 39.688z M63.684 23.92h-1.809v11.358h1.809c0.376 0 0.696-0.132 0.96-0.396c0.264-0.261 0.396-0.583 0.396-0.96v-8.645 c0-0.378-0.133-0.698-0.396-0.961C64.38 24.1 64.1 23.9 63.7 23.92z M12.91 23.92H11.1v9.608h1.809 c0.375 0 0.693-0.133 0.959-0.398c0.264-0.263 0.398-0.583 0.398-0.958v-6.896c0-0.378-0.134-0.698-0.398-0.961 C13.603 24.1 13.3 23.9 12.9 23.92z M107.216 7.496c-0.907-1.476-3.211-2.783-5.211-1.261l-12.774 9.1 c-0.426 0.014-0.844-0.206-1.058-0.607c-0.122-0.231-0.15-0.481-0.113-0.719l4.428-7.936c0.695-1.001 0.869-1.489 0.869-2.434 c0-1.856-1.621-3.525-3.477-3.525c-0.26 0-0.673-0.127-0.916-0.07H4.752C2.127 0 0 2.1 0 4.766V57.5 c0 2.6 2.1 4.8 4.8 4.752h98.176c2.627 0 4.753-2.128 4.753-4.752V8.919C107.641 8.4 107.5 8 107.2 7.496z M38.126 9.543c1.664 0 3 1.4 3 3.019c0 1.665-1.351 3.015-3.015 3.015c-1.666 0-3.017-1.35-3.017-3.015 C35.109 10.9 36.5 9.5 38.1 9.543z M27.623 9.543c1.666 0 3 1.4 3 3.019c0 1.665-1.352 3.015-3.018 3 c-1.665 0-3.017-1.35-3.017-3.015C24.606 10.9 26 9.5 27.6 9.543z M20.876 30.647c0 1.732-0.528 3.182-1.581 4.3 c-0.567 0.602-1.242 1.093-2.035 1.471c0.828 0.3 1.5 0.7 2 1.242c0.528 0.5 0.9 1.1 1.2 1.9 c0.263 0.7 0.4 1.5 0.4 2.371v8.365c0 0.98-0.188 1.901-0.564 2.768c-0.377 0.867-0.885 1.622-1.526 2.3 c-0.642 0.642-1.392 1.151-2.259 1.528c-0.867 0.374-1.792 0.564-2.769 0.564H5.28c-0.527 0-0.79-0.265-0.79-0.792V18.664 c0-0.525 0.262-0.79 0.79-0.79h8.478c0.976 0 1.9 0.2 2.8 0.565c0.867 0.4 1.6 0.9 2.3 1.5 c0.642 0.6 1.1 1.4 1.5 2.261c0.377 0.9 0.6 1.8 0.6 2.77V30.647z M31.067 56.193c0 0.529-0.264 0.792-0.789 0.8 h-5.031c-0.529 0-0.791-0.263-0.791-0.792V18.654c0-0.529 0.262-0.791 0.791-0.791h5.031c0.525 0 0.8 0.3 0.8 0.791V56.193z M51.261 50.706c0 0.981-0.189 1.904-0.566 2.77c-0.377 0.866-0.884 1.62-1.524 2.261c-0.645 0.64-1.396 1.148-2.261 1.5 c-0.868 0.374-1.792 0.563-2.771 0.563h-2.145c-0.982 0-1.907-0.189-2.771-0.563c-0.867-0.378-1.619-0.887-2.258-1.526 c-0.643-0.641-1.151-1.395-1.526-2.261c-0.377-0.865-0.566-1.788-0.566-2.77v-21.23c-0.005-0.054-0.022-0.1-0.022-0.157V18.654 c0-0.529 0.264-0.791 0.791-0.791h5.03c0.527 0 0.8 0.3 0.8 0.791v10.082c0.008 0 0 0.1 0 0.146v21.542 c0 0.4 0.1 0.7 0.4 0.962c0.262 0.3 0.6 0.4 1 0.395h0.453c0.375 0 0.697-0.13 0.961-0.395 c0.261-0.265 0.393-0.585 0.393-0.962V18.836c0-0.526 0.264-0.791 0.793-0.791h5.029c0.527 0 0.8 0.3 0.8 0.791V50.706z M72.216 57.433h-5.142c-0.225 0-0.442-0.077-0.65-0.227c-0.208-0.15-0.35-0.337-0.425-0.565l-4.125-13.845v14.637l-0.055-0.564 c-0.078 0.374-0.321 0.564-0.735 0.564h-5.031c-0.527 0-0.791-0.262-0.791-0.792V18.664c0-0.525 0.264-0.79 0.791-0.79h8.478 c0.979 0 1.9 0.2 2.8 0.565c0.867 0.4 1.6 0.9 2.3 1.524c0.641 0.6 1.1 1.4 1.5 2.3 c0.377 0.9 0.6 1.8 0.6 2.77v9.212c0 1.393-0.359 2.647-1.074 3.757c-0.718 1.111-1.657 1.97-2.826 2.572l5.029 16.1 C72.896 57.2 72.7 57.4 72.2 57.433z M91.941 50.706c0 0.981-0.188 1.904-0.565 2.77c-0.379 0.866-0.883 1.62-1.528 2.3 c-0.64 0.64-1.393 1.148-2.259 1.526c-0.864 0.374-1.79 0.563-2.769 0.563h-2.147c-0.979 0-1.904-0.189-2.769-0.563 c-0.869-0.378-1.621-0.887-2.261-1.526c-0.641-0.641-1.15-1.395-1.523-2.261c-0.379-0.865-0.566-1.788-0.566-2.77V24.598 c0-0.979 0.188-1.901 0.566-2.767c0.373-0.867 0.883-1.62 1.523-2.263c0.64-0.639 1.392-1.147 2.261-1.524 c0.864-0.377 1.789-0.565 2.769-0.565h2.147c0.979 0 1.9 0.2 2.8 0.565c0.866 0.4 1.6 0.9 2.3 1.5 c0.645 0.6 1.1 1.4 1.5 2.263c0.377 0.9 0.6 1.8 0.6 2.767V50.706z M83.972 23.525h-0.453 c-0.377 0-0.696 0.134-0.959 0.396c-0.265 0.264-0.396 0.585-0.396 0.961v25.543c0 0.4 0.1 0.7 0.4 1 c0.263 0.3 0.6 0.4 1 0.395h0.453c0.376 0 0.695-0.13 0.96-0.395c0.266-0.265 0.396-0.585 0.396-0.962V24.881 c0-0.376-0.131-0.697-0.396-0.961C84.668 23.7 84.3 23.5 84 23.525z" style="fill: #006957"></path>
</svg>
\ No newline at end of file
<!--
<meta name="image" content="/wp-content/themes/biuro/i/preview/logo.jpg">
<meta itemprop="name" content="Our demo">
<meta itemprop="description" content="Our demo description goes here">
<meta itemprop="image" content="/wp-content/themes/biuro/i/preview/logo.jpg">
<meta name="twitter:image:src" content="/wp-content/themes/biuro/i/preview/image.jpg">
-->
/* ------------- Settings: typography ------------- */
/* critical:start */
/* critical:end */
:root {
--typo--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--typo--font-size: 1.8rem;
--typo--line-height: 1.2;
--typo--font-face: 'PT Sans Narrow', 'system', sans-serif;
@media (--min--small) {
--typo--font-size: 1.6rem;
--typo--line-height: 1.3;
}
}
/* critical:end */
......@@ -2,22 +2,13 @@
/* critical:start */
/* critical:end */
body {
font-family: var(--typo--font-family);
font-size: var(--typo--font-size);
line-height: var(--typo--line-height);
color: var(--color--gray);
@media (--min--small) {
font-size: 1.6rem;
line-height: 1.3;
/*
:root {
--typo--font-size: 1.6rem;
--typo--line-height: 1.3;
}
*/
}
}
/* critical:end */
body { font-family: var( --typo--font-face); }
/*
ul{
list-style:none
}
......@@ -22,7 +20,7 @@ button,input,select,textarea{
color:#4b4d4f;
font:16px/1.3 'PT Sans Narrow',sans-serif
}
*/
......
:root{--color--gray:#4d4d4d;--color--green:#006957;--typo--font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--typo--font-size:1.8rem;--typo--line-height:1.2;--typo--font-face:"PT Sans Narrow","system",sans-serif;--layout-width:63em}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-family:var(--typo--font-family);font-size:1.8rem;font-size:var(--typo--font-size);line-height:1.2;line-height:var(--typo--line-height);color:#4d4d4d;color:var(--color--gray)}html{min-height:100%;font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.l-content,.l-footer,.l-header,.l-inner{max-width:63em;max-width:var(--layout-width);margin-right:auto;margin-left:auto;padding-right:1em;padding-left:1em}.l-header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.25em}.o-nav{margin:0;padding:0;list-style:none}.c-cookies-warning{display:none}.c-data-controller{padding:0 1em;text-align:center;font-size:88%}.c-data-controller p{margin-bottom:0}.u-hidden{display:none}@media (min-width:48rem){body{font-size:1.6rem;line-height:1.3}.l-content{display:-webkit-box;display:-ms-flexbox;display:flex}.l-aside{-webkit-box-flex:0;-ms-flex:0 0 195px;flex:0 0 195px}.l-main{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}@media (min-width:60rem){.l-aside{-ms-flex-preferred-size:215px;flex-basis:215px;-ms-flex-preferred-size:235px;flex-basis:235px}}
\ No newline at end of file
:root{--color--gray:#4d4d4d;--color--green:#006957;--layout-width:63em}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}html{min-height:100%;font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}.l-content,.l-footer,.l-header,.l-inner{max-width:63em;max-width:var(--layout-width);margin-right:auto;margin-left:auto;padding-right:1em;padding-left:1em}.l-header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1.25em}.o-nav{margin:0;padding:0;list-style:none}.c-cookies-warning{display:none}.c-data-controller{padding:0 1em;text-align:center;font-size:88%}.c-data-controller p{margin-bottom:0}.u-hidden{display:none}@media (min-width:48rem){.l-content{display:-webkit-box;display:-ms-flexbox;display:flex}.l-aside{-webkit-box-flex:0;-ms-flex:0 0 195px;flex:0 0 195px}.l-main{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}}@media (min-width:60rem){.l-aside{-ms-flex-preferred-size:215px;flex-basis:215px;-ms-flex-preferred-size:235px;flex-basis:235px}}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIjAxLXNldHRpbmdzL19zZXR0aW5ncy0tY29sb3JzLmNzcyIsIjAxLXNldHRpbmdzL19zZXR0aW5ncy0tbGF5b3V0LmNzcyIsIjAzLWdlbmVyaWMvX2dlbmVyaWMtLWJveC1zaXppbmcuY3NzIiwiMDQtZWxlbWVudHMvX2VsZW1lbnQtLWh0bWwuY3NzIiwiMDUtbGF5b3V0L19sYXlvdXQtLWlubmVyLmNzcyIsIjA1LWxheW91dC9fbGF5b3V0LS1oZWFkZXIuY3NzIiwiMDYtb2JqZWN0cy9fb2JqZWN0LS1uYXYuY3NzIiwiMDctY29tcG9uZW50cy9fY29tcG9uZW50LS1jb29raWVzLXdhcm5pbmcuY3NzIiwiMDctY29tcG9uZW50cy9fY29tcG9uZW50LS1kYXRhLWNvbnRyb2xsZXIuY3NzIiwiMTAtdHJ1bXBzL191dGlscy12aXNpYmlsaXR5LmNzcyIsIjA1LWxheW91dC9fbGF5b3V0LS1jb250ZW50LmNzcyIsIjA1LWxheW91dC9fbGF5b3V0LS1hc2lkZS5jc3MiLCIwNS1sYXlvdXQvX2xheW91dC0tbWFpbi5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsTUFDSSxzQkFBdUIsQUFDdkIsdUJBQXdCLEFDQXhCLG1CQUFxQixDREN4QixBRUhELEtBQWMsOEJBQXVCLEFBQXZCLHFCQUF1QixDQUFFLEFBRXZDLGlCQUVjLDJCQUFvQixBQUFwQixrQkFBb0IsQ0FBRSxBQ0pwQyxLQUFVLGdCQUFpQixBQUFDLGdCQUFpQixBQUFDLHlDQUE4QyxDQUFFLEFDQTlGLHdDQUFjLGVBQStCLEFBQS9CLDhCQUErQixBQUFDLGtCQUFtQixBQUFDLGlCQUFrQixBQUFDLGtCQUFtQixBQUFDLGdCQUFrQixDQUFFLEFDQTdILFVBQWMsb0JBQWMsQUFBZCxvQkFBYyxBQUFkLGFBQWMsQUFBbUIsb0JBQXNCLENBQUUsQUNBdkUsT0FBa0IsU0FBVSxBQUFDLFVBQVcsQUFBQyxlQUFpQixDQUFFLEFDQTVELG1CQUFxQixZQUFjLENBQUUsQUNBckMsbUJBQXFCLGNBQWUsQUFBQyxrQkFBbUIsQUFBQyxhQUFlLENBRXZFLEFBREcscUJBQU0sZUFBaUIsQ0FBRSxBQ1c3QixVQUEwQixZQUFjLENBQUUsQUNYdEMseUJBREosV0FFUSxvQkFBYyxBQUFkLG9CQUFjLEFBQWQsWUFBYyxDQUVyQixBQ0pELFNBRVEsbUJBQWdCLEFBQWhCLG1CQUFnQixBQUFoQixjQUFnQixDQVF2QixBQ1ZELFFBRVEsbUJBQWUsQUFBZixrQkFBZSxBQUFmLGFBQWUsQ0FFdEIsQ0ZESSxBQ0NELHlCQUpKLFNBS1EsOEJBQWtCLEFBQWxCLGlCQUFrQixBQUdsQiw4QkFBa0IsQUFBbEIsZ0JBQWtCLENBRXpCLENBSkkiLCJmaWxlIjoiY29yZS5taW4uY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLyogLS0tLS0tLS0tLS0tLSBTZXR0aW5nczogY29sb3JzIC0tLS0tLS0tLS0tLS0gKi9cblxuLyogY3JpdGljYWw6c3RhcnQgKi9cblxuOnJvb3QgICB7XG4gICAgLS1jb2xvci0tZ3JheTogIzRkNGQ0ZDtcbiAgICAtLWNvbG9yLS1ncmVlbjogIzAwNjk1Nztcbn1cblxuLyogY3JpdGljYWw6ZW5kICovXG4iLCIvKiAtLS0tLS0tLS0tLS0tIFNldHRpbmdzOiBsYXlvdXQgLS0tLS0tLS0tLS0tLSAqL1xuXG4vKiBjcml0aWNhbDpzdGFydCAqL1xuXG46cm9vdCAgIHtcbiAgICAvKi0tbGF5b3V0LXdpZHRoOiA5NzZweDsqL1xuICAgIC0tbGF5b3V0LXdpZHRoOiA2M2VtO1xufVxuXG4vKiBjcml0aWNhbDplbmQgKi9cbiIsIi8qIC0tLS0tLS0tLS0tLS0gR2VuZXJpYzogYm94IHNpemluZyAtLS0tLS0tLS0tLS0tICovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbmh0bWwgICAgICAgIHsgYm94LXNpemluZzogYm9yZGVyLWJveDsgfVxuXG4qLFxuKjpiZWZvcmUsXG4qOmFmdGVyICAgICB7IGJveC1zaXppbmc6IGluaGVyaXQ7IH1cblxuLyogY3JpdGljYWw6ZW5kICovXG4iLCIvKiAtLS0tLS0tLS0tLS0tIEVsZW1lbnRzOiBodG1sIC0tLS0tLS0tLS0tLS0gKi9cblxuLyogY3JpdGljYWw6c3RhcnQgKi9cblxuaHRtbCAgICB7IG1pbi1oZWlnaHQ6IDEwMCU7IGZvbnQtc2l6ZTogNjIuNSU7IC13ZWJraXQtdGFwLWhpZ2hsaWdodC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwKTsgfVxuXG4vKiBjcml0aWNhbDplbmQgKi9cbiIsIi8qIC0tLS0tLS0tLS0tLS0gTGF5b3V0OiBpbm5lciAtLS0tLS0tLS0tLS0tICovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbi5sLWlubmVyICAgIHsgbWF4LXdpZHRoOiB2YXIoLS1sYXlvdXQtd2lkdGgpOyBtYXJnaW4tcmlnaHQ6IGF1dG87IG1hcmdpbi1sZWZ0OiBhdXRvOyBwYWRkaW5nLXJpZ2h0OiAxZW07IHBhZGRpbmctbGVmdDogMWVtOyB9XG5cbi8qIGNyaXRpY2FsOmVuZCAqL1xuIiwiLyogLS0tLS0tLS0tLS0tLSBMYXlvdXQ6IGhlYWRlciAtLS0tLS0tLS0tLS0tICovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbi5sLWhlYWRlciAgIHsgZGlzcGxheTogZmxleDsgQGV4dGVuZCAubC1pbm5lcjsgbWFyZ2luLWJvdHRvbTogMS4yNWVtOyB9XG5cbi8qIGNyaXRpY2FsOmVuZCAqL1xuXG4ubC1oZWFkZXIgICB7IGJveC1zaGFkb3c6IGluc2V0IDAgMCAwIDFweCBvcmFuZ2U7ICB9XG4iLCIvKiAtLS0tLS0tLS0tLS0tIE9iamVjdDogbmF2aWdhdGlvbiAtLS0tLS0tLS0tLS0tICovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbi5vLW5hdiAgICAgICAgICB7IG1hcmdpbjogMDsgcGFkZGluZzogMDsgbGlzdC1zdHlsZTogbm9uZTsgfVxuXG4vKi5vLW5hdi0taXRlbSAgICB7IGRpc3BsYXk6IGJsb2NrOyB9Ki9cblxuLyouby1uYXYtLWxpbmsgICAgeyBkaXNwbGF5OiBibG9jazsgfSovXG5cbi8qIGNyaXRpY2FsOmVuZCAqL1xuXG5cbi8qLm8tbmF2ICAgICAgICAgIHsgdXNlci1zZWxlY3Q6IG5vbmU7IH0qL1xuXG4iLCIvKiAtLS0tLS0tLS0tLS0tIENvbXBvbmVudDogY29va2llcyB3YXJuaW5nIC0tLS0tLS0tLS0tLS0gKi9cblxuLyogY3JpdGljYWw6c3RhcnQgKi9cblxuLmMtY29va2llcy13YXJuaW5nIHsgZGlzcGxheTogbm9uZTsgfVxuXG4vKiBjcml0aWNhbDplbmQgKi9cblxuLmMtY29va2llcy13YXJuaW5nIHsgcG9zaXRpb246IGZpeGVkOyBsZWZ0OiAwcHg7IHJpZ2h0OiAwOyBib3R0b206IDBweDsgcGFkZGluZzogMTVweCAyMHB4OyBiYWNrZ3JvdW5kOiAjZjZmNmY2OyAgb3ZlcmZsb3c6IGhpZGRlbjsgei1pbmRleDogMTAwO1xuICAgIC5idS1hY3Rpb24gICAgICAgICAgICAgIHsgbWFyZ2luLXRvcDogMTBweDsgfVxuICAgIC5idS1hY3Rpb24tLWFsdCAgICAgeyBmbG9hdDogcmlnaHQ7IH1cbn1cblxuIiwiLyogLS0tLS0tLS0tLS0tLSBDb21wb25lbnQ6IGRhdGEgY29udHJvbGxlciAtLS0tLS0tLS0tLS0tICovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbi5jLWRhdGEtY29udHJvbGxlciB7IHBhZGRpbmc6IDAgMWVtOyB0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogODglO1xuICAgIHAgICB7IG1hcmdpbi1ib3R0b206IDA7IH1cbn1cblxuLyogY3JpdGljYWw6ZW5kICovXG4iLCIvKiAtLS0tLS0tLS0tLS0tIFV0aWw6IHZpc2liaWxpdHkgLS0tLS0tLS0tLS0tLSAqL1xuXG4vKipcbiAqIEVsZW1lbnRzIHZpc2liaWxpdHlcbiAqXG4gKiBAYXRvbSBWaXNpYmlsaXR5XG4gKiBAc2VjdGlvbiBVdGlscyA+IFZpc2liaWxpdHlcbiAqIEBtYXJrdXBcbiAqICA8ZGl2Pi51LWhpZGRlbjwvZGl2PlxuICogIDxkaXY+LnUtaGlkZGVuLS1tYXgtc21hbGw8L2Rpdj5cbiAqICA8ZGl2Pi51LWhpZGRlbi0tdmlzdWFsbHk8L2Rpdj5cbiAqICA8ZGl2Pi51LWhpZGRlbi0tcHJpbnQ8L2Rpdj5cbiovXG5cbi8qIGNyaXRpY2FsOnN0YXJ0ICovXG5cbi51LWhpZGRlbiAgICAgICAgICAgICAgIHsgZGlzcGxheTogbm9uZTsgfVxuXG4vKiBjcml0aWNhbDplbmQgKi9cblxuXG4vKlxuLnUtaGlkZGVuLS1tYXgtc21hbGwgICAge1xuICAgIEBtZWRpYSAoLS1tYXgtLXNtYWxsKSB7XG4gICAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxufVxuXG4udS1oaWRkZW4tLXZpc3VhbGx5ICAgICB7IGJvcmRlcjogMDsgY2xpcDogcmVjdCgwIDAgMCAwKTsgaGVpZ2h0OiAxcHg7IG1hcmdpbjogLTFweDsgb3ZlcmZsb3c6IGhpZGRlbjsgcGFkZGluZzogMDsgcG9zaXRpb246IGFic29sdXRlOyB3aWR0aDogMXB4OyB9ICovXG4vKlxuXG5AbWVkaWEgcHJpbnQgICAgICAgICAgICB7XG4gICAgLnUtaGlkZGVuLS1wcmludCAgICAgICAgeyBkaXNwbGF5OiBub25lOyB9XG59XG4qL1xuIiwiLyogLS0tLS0tLS0tLS0tLSBMYXlvdXQ6IGNvbnRlbnQgLS0tLS0tLS0tLS0tLSAqL1xuXG4vKiBjcml0aWNhbDpzdGFydCAqL1xuXG4ubC1jb250ZW50ICAgeyBAZXh0ZW5kIC5sLWlubmVyO1xuICAgIEBtZWRpYSAoLS1taW4tLXNtYWxsKSB7XG4gICAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgfVxufVxuXG4vKiBjcml0aWNhbDplbmQgKi9cblxuLmwtY29udGVudCAgIHsgYm94LXNoYWRvdzogaW5zZXQgMCAwIDAgMXB4IGdyZWVuOyB9XG4iLCIvKiAtLS0tLS0tLS0tLS0tIExheW91dDogYXNpZGUgLS0tLS0tLS0tLS0tLSAqL1xuXG4vKiBjcml0aWNhbDpzdGFydCAqL1xuXG4ubC1hc2lkZSAgICB7XG4gICAgQG1lZGlhICgtLW1pbi0tc21hbGwpIHtcbiAgICAgICAgZmxleDogMCAwIDE5NXB4O1xuICAgIH1cbiAgICBAbWVkaWEgKC0tbWluLS1tZWRpdW0pIHtcbiAgICAgICAgZmxleC1iYXNpczogMjE1cHg7XG4gICAgfVxuICAgIEBtZWRpYSAoLS1taW4tLW1lZGl1bSkge1xuICAgICAgICBmbGV4LWJhc2lzOiAyMzVweDtcbiAgICB9XG59XG5cbi8qIGNyaXRpY2FsOmVuZCAqL1xuIiwiLyogLS0tLS0tLS0tLS0tLSBMYXlvdXQ6IG1haW4gLS0tLS0tLS0tLS0tLSAqL1xuXG4vKiBjcml0aWNhbDpzdGFydCAqL1xuXG4ubC1tYWluICAgICB7XG4gICAgQG1lZGlhICgtLW1pbi0tc21hbGwpIHtcbiAgICAgICAgZmxleDogMSAxIDEwMCU7XG4gICAgfVxufVxuXG4vKiBjcml0aWNhbDplbmQgKi9cbiJdfQ== */
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -24,6 +24,6 @@
?>
<!-- <script src="/wp-content/themes/biuro/js/main-3fa889f6.min.js" async></script> -->
<!-- <script src="/wp-content/themes/biuro/js/main.min.js" async></script> -->
</body>
</html>
......@@ -57,6 +57,6 @@
endif;
?>
<script src="/wp-content/themes/biuro/js/main-3fa889f6.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main.min.js" async></script>
</body>
</html>
......@@ -219,8 +219,10 @@ function init_biuro_theme() {
)
);
pll_register_string('biuro-language', 'Language', 'Biuro');
pll_register_string('biuro-job-search', 'Job search', 'Biuro');
if (function_exists('pll_register_string')) :
pll_register_string('biuro-language', 'Language', 'Biuro');
pll_register_string('biuro-job-search', 'Job search', 'Biuro');
endif;
}
add_action('init', 'init_biuro_theme');
......
......@@ -5,24 +5,25 @@
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php
include 'content/meta.html';
?>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#006957">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<?php
include 'content/icons.html';
?>
<meta name="google-site-verification" content="Xlpzg6WVpXXrivwjXrOaEzjxZQcPP2x0oCoUizYyCDM" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<style><?php include 'css/core-d4ffa95eff.min.css'; ?></style>
<style><?php include 'css/core.min.css'; ?></style>
<link rel="preload" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main.min.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main.min.css">
</noscript>
<?php wp_head(); ?>
......@@ -30,10 +31,11 @@
<body>
<svg xmlns="http://www.w3.org/2000/svg" class="u-hidden">
<symbol id="biuro-logo" viewBox="0 0 108 63">
<title>Biuro</title>
<symbol id="biuro-logo" viewBox="0 0 108 63" aria-labelledby="svg-title svg-desc">
<title id="svg-title">Biuro</title>
<desc id="svg-desc"><?php echo get_the_title( get_option('page_on_front') ); ?></desc>
<path d="M12.91 39.688L11.1 39.686v11.7h1.809c0.375 0 0.693-0.131 0.959-0.396 c0.264-0.263 0.398-0.584 0.398-0.962v-8.984c0-0.375-0.134-0.695-0.398-0.963C13.603 39.8 13.3 39.7 12.9 39.688z M63.684 23.92h-1.809v11.358h1.809c0.376 0 0.696-0.132 0.96-0.396c0.264-0.261 0.396-0.583 0.396-0.96v-8.645 c0-0.378-0.133-0.698-0.396-0.961C64.38 24.1 64.1 23.9 63.7 23.92z M12.91 23.92H11.1v9.608h1.809 c0.375 0 0.693-0.133 0.959-0.398c0.264-0.263 0.398-0.583 0.398-0.958v-6.896c0-0.378-0.134-0.698-0.398-0.961 C13.603 24.1 13.3 23.9 12.9 23.92z M107.216 7.496c-0.907-1.476-3.211-2.783-5.211-1.261l-12.774 9.1 c-0.426 0.014-0.844-0.206-1.058-0.607c-0.122-0.231-0.15-0.481-0.113-0.719l4.428-7.936c0.695-1.001 0.869-1.489 0.869-2.434 c0-1.856-1.621-3.525-3.477-3.525c-0.26 0-0.673-0.127-0.916-0.07H4.752C2.127 0 0 2.1 0 4.766V57.5 c0 2.6 2.1 4.8 4.8 4.752h98.176c2.627 0 4.753-2.128 4.753-4.752V8.919C107.641 8.4 107.5 8 107.2 7.496z M38.126 9.543c1.664 0 3 1.4 3 3.019c0 1.665-1.351 3.015-3.015 3.015c-1.666 0-3.017-1.35-3.017-3.015 C35.109 10.9 36.5 9.5 38.1 9.543z M27.623 9.543c1.666 0 3 1.4 3 3.019c0 1.665-1.352 3.015-3.018 3 c-1.665 0-3.017-1.35-3.017-3.015C24.606 10.9 26 9.5 27.6 9.543z M20.876 30.647c0 1.732-0.528 3.182-1.581 4.3 c-0.567 0.602-1.242 1.093-2.035 1.471c0.828 0.3 1.5 0.7 2 1.242c0.528 0.5 0.9 1.1 1.2 1.9 c0.263 0.7 0.4 1.5 0.4 2.371v8.365c0 0.98-0.188 1.901-0.564 2.768c-0.377 0.867-0.885 1.622-1.526 2.3 c-0.642 0.642-1.392 1.151-2.259 1.528c-0.867 0.374-1.792 0.564-2.769 0.564H5.28c-0.527 0-0.79-0.265-0.79-0.792V18.664 c0-0.525 0.262-0.79 0.79-0.79h8.478c0.976 0 1.9 0.2 2.8 0.565c0.867 0.4 1.6 0.9 2.3 1.5 c0.642 0.6 1.1 1.4 1.5 2.261c0.377 0.9 0.6 1.8 0.6 2.77V30.647z M31.067 56.193c0 0.529-0.264 0.792-0.789 0.8 h-5.031c-0.529 0-0.791-0.263-0.791-0.792V18.654c0-0.529 0.262-0.791 0.791-0.791h5.031c0.525 0 0.8 0.3 0.8 0.791V56.193z M51.261 50.706c0 0.981-0.189 1.904-0.566 2.77c-0.377 0.866-0.884 1.62-1.524 2.261c-0.645 0.64-1.396 1.148-2.261 1.5 c-0.868 0.374-1.792 0.563-2.771 0.563h-2.145c-0.982 0-1.907-0.189-2.771-0.563c-0.867-0.378-1.619-0.887-2.258-1.526 c-0.643-0.641-1.151-1.395-1.526-2.261c-0.377-0.865-0.566-1.788-0.566-2.77v-21.23c-0.005-0.054-0.022-0.1-0.022-0.157V18.654 c0-0.529 0.264-0.791 0.791-0.791h5.03c0.527 0 0.8 0.3 0.8 0.791v10.082c0.008 0 0 0.1 0 0.146v21.542 c0 0.4 0.1 0.7 0.4 0.962c0.262 0.3 0.6 0.4 1 0.395h0.453c0.375 0 0.697-0.13 0.961-0.395 c0.261-0.265 0.393-0.585 0.393-0.962V18.836c0-0.526 0.264-0.791 0.793-0.791h5.029c0.527 0 0.8 0.3 0.8 0.791V50.706z M72.216 57.433h-5.142c-0.225 0-0.442-0.077-0.65-0.227c-0.208-0.15-0.35-0.337-0.425-0.565l-4.125-13.845v14.637l-0.055-0.564 c-0.078 0.374-0.321 0.564-0.735 0.564h-5.031c-0.527 0-0.791-0.262-0.791-0.792V18.664c0-0.525 0.264-0.79 0.791-0.79h8.478 c0.979 0 1.9 0.2 2.8 0.565c0.867 0.4 1.6 0.9 2.3 1.524c0.641 0.6 1.1 1.4 1.5 2.3 c0.377 0.9 0.6 1.8 0.6 2.77v9.212c0 1.393-0.359 2.647-1.074 3.757c-0.718 1.111-1.657 1.97-2.826 2.572l5.029 16.1 C72.896 57.2 72.7 57.4 72.2 57.433z M91.941 50.706c0 0.981-0.188 1.904-0.565 2.77c-0.379 0.866-0.883 1.62-1.528 2.3 c-0.64 0.64-1.393 1.148-2.259 1.526c-0.864 0.374-1.79 0.563-2.769 0.563h-2.147c-0.979 0-1.904-0.189-2.769-0.563 c-0.869-0.378-1.621-0.887-2.261-1.526c-0.641-0.641-1.15-1.395-1.523-2.261c-0.379-0.865-0.566-1.788-0.566-2.77V24.598 c0-0.979 0.188-1.901 0.566-2.767c0.373-0.867 0.883-1.62 1.523-2.263c0.64-0.639 1.392-1.147 2.261-1.524 c0.864-0.377 1.789-0.565 2.769-0.565h2.147c0.979 0 1.9 0.2 2.8 0.565c0.866 0.4 1.6 0.9 2.3 1.5 c0.645 0.6 1.1 1.4 1.5 2.263c0.377 0.9 0.6 1.8 0.6 2.767V50.706z M83.972 23.525h-0.453 c-0.377 0-0.696 0.134-0.959 0.396c-0.265 0.264-0.396 0.585-0.396 0.961v25.543c0 0.4 0.1 0.7 0.4 1 c0.263 0.3 0.6 0.4 1 0.395h0.453c0.376 0 0.695-0.13 0.96-0.395c0.266-0.265 0.396-0.585 0.396-0.962V24.881 c0-0.376-0.131-0.697-0.396-0.961C84.668 23.7 84.3 23.5 84 23.525z" style="fill: #006957"/>
</symbol>
</symbol>
</svg>
<div class="advert_page">
......
......@@ -5,24 +5,25 @@
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php
include 'content/meta.html';
?>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#006957">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<?php
include 'content/icons.html';
?>
<meta name="google-site-verification" content="Xlpzg6WVpXXrivwjXrOaEzjxZQcPP2x0oCoUizYyCDM" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<style><?php include 'css/core-d4ffa95eff.min.css'; ?></style>
<style><?php include 'css/core.min.css'; ?></style>
<link rel="preload" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main.min.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main.min.css">
</noscript>
<?php wp_head(); ?>
......@@ -130,12 +131,12 @@
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<style><?php include 'css/core-d4ffa95eff.min.css'; ?></style>
<style><?php include 'css/core.min.css'; ?></style>
<link rel="preload" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main.min.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-46e283adc3.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main.min.css">
</noscript>
<?php wp_head(); ?>
......
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){!function(e){var t=document.getElementById("cookie-warning"),n=document.getElementById("cookie-agree"),r=document.getElementById("cookie-close"),o=!!u()&&localStorage.getItem("biuro-agree");function u(){try{return localStorage.setItem("a","a"),localStorage.removeItem("a"),!0}catch(e){return!1}}t&&n&&r&&!o&&(t.style.display="block",n.addEventListener("click",function(){u()&&localStorage.setItem("biuro-agree","true"),t.style.display="none"}),r.addEventListener("click",function(){t.style.display="none"}))}(window)}]);
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
sleep 45;
echo "WP CLI init"
# !/usr/bin/env sh
# Install WordPress.
# wp core install \
# --path="/var/www/html"\
# --title="Biuro" \
# --admin_user="biuro" \
# --admin_password="laikinas2587" \
# --admin_email="info@biuro.eu" \
# --url="https://dev.biuro.lt" \
# --skip-email
# https://www.exove.com/blog/developing-with-wordpress-part-4-wp-cli-basics/
# https://developer.wordpress.org/cli/commands/
# WP update
wp core update --force
wp core update-db --network
# Update permalink structure.
wp option update permalink_structure "/%postname%/" --skip-themes --skip-plugins
wp option update timezone_string "Manual Offsets/UTC+2"
wp option update date_format "Y-m-d"
wp option update time_format "H:i"
# Install plugins
wp plugin install permalink-manager --force --activate-network
wp plugin install pods --activate-network
wp plugin install polylang --activate-network
wp plugin install wordpress-seo --activate-network
# wp plugin install wordpress-seo --activate
# Update all plugins
wp plugin update --all
# Activate plugin.
wp plugin activate akismet --network
wp plugin activate cookies-warning --network
wp plugin activate data-controller --network
# wp plugin activate jobs-importer
# Update translations
wp language core update
wp language plugin update --all
# WP themes
wp theme activate biuro
wp theme delete twentynineteen
wp theme delete twentyseventeen
wp theme delete twentysixteen
echo "WP CLI done. Ready to use."
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment