Commit c0b08669 authored by Simonas's avatar Simonas

release 0.0.27

parent 4f59158d
......@@ -112,10 +112,10 @@ Can't share C drive
- docker load --input ourdemo.tar
- docker build -t biuro/web:0.0.25 .
- docker build -t biuro/web:0.0.27 .
- docker login --username=biuro --password=9Ndtjd2vKsLvGuFOeFq1KdJs
- sudo docker login --username=biuro --password=9Ndtjd2vKsLvGuFOeFq1KdJs
- docker push biuro/web:0.0.25
- docker push biuro/web:0.0.27
- sudo chown -R www-data:www-data wordpress/wp-content/plugins
......
......@@ -23,7 +23,7 @@
class Biuro_Contacts_Public {
/**
* The ID of this plugin.
* The ID of this plfpisugin.
*
* @since 1.0.0
* @access private
......@@ -306,12 +306,15 @@ class Biuro_Contacts_Public {
$nonce = $_POST['_wpnonce'];
$referer = $_POST['_wp_http_referer'];
if ( !isset( $nonce ) || !wp_verify_nonce($nonce, 'employees_post_nonce' ) ) {
wp_redirect( $referer );
exit;
}
if ( $referer && substr($referer, -1) == '?') {
$referer = substr($referer, 0, -1);
}
unset($_SESSION['employees--step']);
......@@ -351,8 +354,13 @@ class Biuro_Contacts_Public {
$_SESSION['employees--s'] = 2;
endif;
$hash = ($_SESSION['employees--name-status'] != 'error' && $_SESSION['employees--phone-status'] != 'error' && $_SESSION['employees--agree-status'] == 'error') ? '?#agree' : '?#action';
wp_redirect( $referer );
if ($_POST['s'] == "1"):
wp_redirect( $referer . $hash );
else:
wp_redirect( $referer );
endif;
exit;
}
......@@ -384,12 +392,15 @@ class Biuro_Contacts_Public {
$nonce = $_POST['_wpnonce'];
$referer = $_POST['_wp_http_referer'];
if ( !isset( $nonce ) || !wp_verify_nonce($nonce, 'employers_post_nonce' ) ) {
wp_redirect( $referer );
exit;
}
if ( $referer && substr($referer, -1) == '?') {
$referer = substr($referer, 0, -1);
}
unset($_SESSION['employers--step']);
$str = 'employers';
......@@ -465,7 +476,13 @@ class Biuro_Contacts_Public {
endif;
wp_redirect( $referer );
$hash = ($_SESSION['employers--name-status'] != 'error' && $_SESSION['employers--phone-status'] != 'error' && $_SESSION['employers--agree-status'] == 'error') ? '?#agree' : '?#action';
if ($_POST['s'] == "1"):
wp_redirect( $referer . $hash );
else:
wp_redirect( $referer );
endif;
exit;
}
......@@ -631,6 +648,10 @@ class Biuro_Contacts_Public {
exit;
}
if ( $referer && substr($referer, -1) == '?') {
$referer = substr($referer, 0, -1);
}
// unset($_SESSION['position--step']);
if ($_POST['s'] == "1"):
......@@ -638,6 +659,8 @@ class Biuro_Contacts_Public {
$_SESSION['position--step'] = 2;
$_SESSION['position--s'] = 1;
$hash = '?#agree';
elseif ($_POST['s'] == "2"):
$_SESSION['position--step'] = 2;
......@@ -668,6 +691,8 @@ class Biuro_Contacts_Public {
$_SESSION[$str . '--' . $key . '-message'] = $validation['message'];
}
$hash = ($_SESSION['position--name-status'] != 'error' && $_SESSION['position--phone-status'] != 'error' && $_SESSION['position--agree-status'] == 'error') ? '?#agree' : '?#action';
if ($canSubmit):
unset($_SESSION['position--step']);
......@@ -695,12 +720,12 @@ class Biuro_Contacts_Public {
$_SESSION['employee--id'] = $insert_id;
$_SESSION['position--s'] = 2;
$hash = '';
endif;
endif;
wp_redirect( $referer );
wp_redirect( $referer . $hash );
exit;
}
......
......@@ -40,7 +40,7 @@ if ( ! defined( 'WPINC' ) ) die;
<div class="c-form--row">
<label class="c-form--label" for="form-name"><?php _e('Name, surname', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap <?php if ($nameStatus) { echo "c-form--input-wrap--$nameStatus"; } ?>">
<input type="text" class="c-form--input" id="form-name" name="name" value="<?php echo $nameValue; ?>" <?php if ($nameStatus == 'error' || isset($_GET['focus']) && $nameStatus != 'error' && $phoneStatus != 'error' && $agreeStatus != 'error' ): ?> autofocus="autofocus" <?php endif; ?>>
<input type="text" class="c-form--input" id="form-name" name="name" value="<?php echo $nameValue; ?>" <?php if ($nameStatus == 'error'): ?> autofocus="autofocus" <?php endif; ?>>
</div>
<?php if ($nameMessage): ?>
<div class="c-form--validation c-form--validation-<?php echo $nameStatus; ?>">
......@@ -61,6 +61,8 @@ if ( ! defined( 'WPINC' ) ) die;
<?php endif; ?>
</div><!-- .c-form--row -->
<div id="agree"></div>
<div class="c-form--row">
<label class="c-form--label" for="form-email"><?php _e('Email address', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap <?php if ($emailStatus) { echo "c-form--input-wrap--$emailStatus"; } ?>">
......
......@@ -20,8 +20,8 @@
if ( ! defined( 'WPINC' ) ) die;
?>
<form name="form-employees" action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" enctype="multipart/form-data" class="c-form c-form--employees">
<form id="form" name="form-employees" action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" enctype="multipart/form-data" class="c-form c-form--employees">
<div id="action" class="c-form--action"></div>
<?php
if ( !$_SESSION['employees--step'] ):
......
......@@ -40,7 +40,7 @@ if ( ! defined( 'WPINC' ) ) die;
<div class="c-form--row">
<label class="c-form--label" for="form-name"><?php _e('Name, surname', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap <?php if ($nameStatus) { echo "c-form--input-wrap--$nameStatus"; } ?>">
<input type="text" class="c-form--input" id="form-name" name="name" value="<?php echo $nameValue; ?>" <?php if ($nameStatus == 'error' || isset($_GET['focus']) && $nameStatus != 'error' && $phoneStatus != 'error' && $agreeStatus != 'error' ): ?> autofocus="autofocus" <?php endif; ?>>
<input type="text" class="c-form--input" id="form-name" name="name" value="<?php echo $nameValue; ?>" <?php if ($nameStatus == 'error'): ?> autofocus="autofocus" <?php endif; ?>>
</div>
<?php if ($nameMessage): ?>
<div class="c-form--validation c-form--validation-<?php echo $nameStatus; ?>">
......@@ -61,6 +61,8 @@ if ( ! defined( 'WPINC' ) ) die;
<?php endif; ?>
</div><!-- .c-form--row -->
<div id="agree"></div>
<div class="c-form--row">
<label class="c-form--label" for="form-email"><?php _e('Email address', 'biuro-contacts'); ?></label>
<div class="c-form--input-wrap <?php if ($emailStatus) { echo "c-form--input-wrap--$emailStatus"; } ?>">
......
......@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) die;
?>
<form name="form-employers" action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" enctype="multipart/form-data" class="c-form c-form--employers">
<div id="action" class="c-form--action"></div>
<?php
if ( !$_SESSION['employers--step'] ):
......
......@@ -101,6 +101,8 @@ if ( ! defined( 'WPINC' ) ) die;
</div>
</div><!-- .c-form--row -->
<div id="agree"></div>
<div class="c-form--row">
<label class="c-form--label" for="form-message"><?php _e('Message', 'biuro-contacts'); ?></label>
<div class="c-form--textarea-wrap">
......
......@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) die;
?>
<form name="form-position" action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" enctype="multipart/form-data" class="c-form <?php if ($_SESSION['position--step']): ?>c-form--position<?php endif; ?>">
<div id="action" class="c-form--action c-form--action-position"></div>
<?php
if ( !$_SESSION['position--step'] ):
......
......@@ -40,6 +40,10 @@
}
.l-content--main { width: 100%; flex: 1 1 auto; max-width: 1070px; padding: 35px 20px 90px; margin: 0 auto;
@media (--max--medium) {
padding: 10px;
}
h1 { color: #2A3644; font-weight: 500; font-size: 22px; line-height: 29px;
@media (--min--medium) {
font-size: 25px; line-height: 38px;
......
......@@ -10,6 +10,5 @@
}
.l-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 300; }
/* critical:end */
/*.l-header { box-shadow: inset 0 0 0 1px orange; }*/
/* critical:end */
......@@ -6,10 +6,10 @@
.l-inner-small { max-width: var(--layout-width--small); margin-right: auto; margin-left: auto; padding-right: 20px; padding-left: 20px; }
/* critical:end */
.l-inner--header { display: flex; flex-direction: row; align-items: center;
@media (--max--medium) {
align-items: flex-start;
}
}
/* critical:end */
......@@ -2,49 +2,39 @@
/* critical:start */
.c-form { }
.c-form--employees,
.c-form--employers { padding: 15px 15px 10px; border-radius: 3px; background-color: #ffffff; box-shadow: 0 1px 31px -23px #6A7481;
.c-form { position: relative }
.c-form--action { position: absolute; top: -88px; left: -9999px; width: 1px;
@media (--min--medium) {
padding: 38px 35px 20px;
top: -128px;
}
}
.l-content--divisions {
.c-form--employees {
@media (--max--medium) {
padding: 38px 35px 20px;
}
}
}
.c-form--action-position { top: -58px; }
.l-content--regions {
.c-form--employers {
@media (--max--medium) {
padding: 38px 35px 20px;
}
.c-form--employees,
.c-form--employers { padding: 28px 20px 20px; border-radius: 3px; background-color: #ffffff; box-shadow: 0 1px 31px -23px #6A7481;
@media (--min--medium) {
padding: 38px 35px 20px;
}
}
.c-form--position { padding: 38px 35px 20px; border-radius: 3px; background-color: #ffffff;
.c-form--position { padding: 28px 20px 20px;border-radius: 3px; background-color: #ffffff;
@media (--min--medium) {
margin: -40px -15px 0; box-shadow: 0 1px 31px -23px #6A7481;
}
}
.c-form--row { position: relative; margin-bottom: 20px; }
.c-form--label { display: block; color: #2A3644; font-size: 15px; line-height: 18px; margin-bottom: 4px; font-weight: 500; }
.c-form--input-wrap { }
.c-form--input { width: 100%; padding: 10px; border: 0; background: none; border: 1px solid #d4d4d4; border-radius: 3px;
.c-form--input { width: 100%; padding: 10px; border: 0; background: none; border: 1px solid #d4d4d4; border-radius: 3px; font-size: 15px; font-family: inherit;
&:focus { border-color: #d4d4d4 !important; }
}
.c-form--textarea { width: 100%; padding: 10px; border: 0; background: none; border: 1px solid #d4d4d4; border-radius: 3px;
.c-form--textarea { width: 100%; padding: 10px; border: 0; background: none; border: 1px solid #d4d4d4; border-radius: 3px; font-size: 15px; font-family: inherit;
&:focus { border-color: #d4d4d4 !important; }
}
......
......@@ -2,8 +2,6 @@
/* critical:start */
/* critical:end */
.c-job--title { margin: 0 0 15px; padding: 0; color: #2A3644; font-weight: 500; font-size: 22px; line-height: 29px;
@media (--min--medium) {
font-size: 30px; line-height: 39px; margin: 0 0 40px;
......@@ -51,3 +49,5 @@
&:hover { text-decoration: underline; }
}
}
/* critical:end */
......@@ -7,14 +7,22 @@
.c-jobs--inner { @extend .l-inner-small; }
.c-jobs--headline { min-height: 29px; margin: 0 0 25px; padding: 20px 20px 0; color: #2A3644; font-size: 25px; font-weight: 500; line-height: 29px;
.c-jobs--table { margin: 0 0 20px; }
.c-jobs--headline {margin: 0 0 25px; padding: 20px 20px 0;
@media (--max--medium) {
min-height: 26px; font-size: 18px; font-weight: 500; line-height: 26px; text-align: center;
text-align: center;
}
}
/* critical:end */
.c-jobs--headline { min-height: 29px; margin: 0 0 25px; padding: 20px 20px 0; color: #2A3644; font-size: 25px; font-weight: 500; line-height: 29px;
@media (--max--medium) {
min-height: 26px; font-size: 18px; font-weight: 500; line-height: 26px; text-align: center;
}
}
.c-jobs--table { width: 100%; margin: 0 0 20px;
tr {
&:hover {
......@@ -23,6 +31,7 @@
}
}
/* critical:start */
.c-jobs--col { background: #fff; vertical-align: middle; color: #868C93; padding: 10px 15px;
@media (--max--medium) {
float: left;
......@@ -31,11 +40,23 @@
border-bottom: 1px solid var(--color--gray-light);
}
}
.c-jobs--col-position {
@media (--max--medium) {
width: 100%;
}
}
.c-jobs--col-valid,
.c-jobs--col-city {
@media (--max--medium) {
width: 50%;
}
}
/* critical:end */
.c-jobs--col-position {
@media (--min--medium) {
padding-right: 5px;
}
......@@ -43,7 +64,7 @@
.c-jobs--col-city { white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
@media (--max--medium) {
width: 50%; border-bottom: 1px solid var(--color--gray-light); font-size: 13px; padding-top: 0;
border-bottom: 1px solid var(--color--gray-light); font-size: 13px; padding-top: 0;
}
@media (--min--medium) {
max-width: 140px; padding-right: 5px; padding-left: 5px;
......@@ -67,12 +88,15 @@
&:visited { color: #551B89; }
}
/* critical:start */
.c-jobs--more { margin-bottom: 50px;
@media (--min--medium) {
margin-bottom: 70px;
}
}
/* critical:end */
......@@ -13,6 +13,7 @@
.c-nav--sub { display: none; }
/* critical:end */
/* critical:start */
.c-nav--main-item { position: relative; /* height: 70px; margin-right: 26px; padding: 23px 0 0; */ z-index: 500;
&:first-child {
@media (--max--medium) {
......@@ -27,6 +28,7 @@
height: 70px; margin-right: 26px; padding: 23px 0 0;
}
}
/* critical:end */
.c-nav--main-anchor { display: block; padding: 5px 0 4px; text-transform: uppercase; border-bottom: 2px solid transparent; text-decoration: none; color: #fff; font-weight: bold; letter-spacing: 1px; opacity: 0.6;
@media (--min--medium) {
color: var(--color--blue-dark);
......@@ -57,7 +59,7 @@
}
}
.c-nav--region { }
/* critical:start */
.c-nav--lang-wrap { width: 74px; height: 32px;
@media (--max--medium) {
position: absolute; top: 20px; left: 20px;
......@@ -66,7 +68,7 @@
position: relative; width: 70px;
}
}
/* critical:end */
.c-nav--lang--is-open {
@media (--max--medium) {
background-color: #1D2A3A; opacity: 0.97; z-index: 800; box-shadow: 0 0 20px 60px #1d2a3a
......@@ -82,9 +84,11 @@
}
}
/* critical:start */
.c-nav--lang-item { padding: 6px 0 6px;
&:nth-child(n+2) { display: none; }
}
/* critical:end */
.c-nav--lang-anchor { padding-left: 34px; text-decoration: none; display: block; color: #fff; font-size: 14px; line-height: 24px; background-repeat: no-repeat; background-position: 6px 0; background-size: 20px 20px; font-weight: 400;
@media (--min--medium) {
color: #2A3644; font-weight: 500;
......
......@@ -2,12 +2,8 @@
/* critical:start */
/* critical:end */
.c-share { margin-bottom: 30px;
@media (--min--medium) {
margin-bottom: 90px;
}
}
.c-share--heading { margin: 0; padding: 20px 0 10px; font-weight: 500; text-align: center; }
......@@ -17,6 +13,7 @@
.c-share--option { height: 36px; flex: 0 0 50px; border-radius: 3px; margin: 0 3px; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.c-share--option-facebook { background-color: #4367B0;
&:hover { background-color: #2F4F90; }
}
......@@ -36,3 +33,12 @@
.c-share--option-phone { background-color: #25D366;
&:hover { background-color: #1BAF52; }
}
/* critical:end */
.c-share {
@media (--min--medium) {
margin-bottom: 90px;
}
}
......@@ -16,6 +16,9 @@
.u-hidden { display: none; }
/* awesomeplete */
.visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* critical:end */
......@@ -26,7 +29,6 @@
}
}
.u-hidden--visually { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } */
/*
@media print {
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -79,7 +79,7 @@
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-THF42F');</script>
<script src="/wp-content/themes/biuro/js/main-26e99805.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main-8d255f4a.min.js" async></script>
<?php wp_footer(); ?>
</body>
</html>
......@@ -32,16 +32,16 @@ define('cityID', $cityID);
?>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<style><?php include 'css/core-857ac73abd.min.css'; ?></style>
<style><?php include 'css/core-9030edd8cb.min.css'; ?></style>
<link rel="preload" href="/wp-content/themes/biuro/css/main-d091026dbb.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-667185c0a1.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/fonts/pt_sans_narrow.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/wp-content/themes/biuro/fonts/pt_sans_narrow_bold.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/wp-content/themes/biuro/fonts/bebas-neue.woff2" as="font" type="font/woff2" crossorigin>
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-d091026dbb.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-667185c0a1.min.css">
</noscript>
<?php wp_head(); ?>
......@@ -143,7 +143,7 @@ global $post;
while( $contactsPage->have_posts() ) :
$contactsPage->the_post();
?>
<a href="<?php echo get_the_permalink(); ?>?focus=form" class="o-btn c-btn--main c-btn--header"><?php _e('Get an offer', 'biuro'); ?></a>
<a href="<?php echo get_the_permalink(); ?>?#action" class="o-btn c-btn--main c-btn--header"><?php _e('Get an offer', 'biuro'); ?></a>
<?php
endwhile;
wp_reset_query();
......@@ -161,7 +161,7 @@ global $post;
while( $contactsPage->have_posts() ) :
$contactsPage->the_post();
?>
<a href="<?php echo get_the_permalink(); ?>?focus=form" class="o-btn c-btn--main c-btn--header"><?php _e('Get a job offer', 'biuro'); ?></a>
<a href="<?php echo get_the_permalink(); ?>?#action" class="o-btn c-btn--main c-btn--header"><?php _e('Get a job offer', 'biuro'); ?></a>
<?php
endwhile;
wp_reset_query();
......
......@@ -385,15 +385,9 @@ if (document.querySelector('.js-modal--close')) {
const node = document.querySelector('.c-form [autofocus]');
if (!node) {
return;
if (node) {
node.focus();
}
const offset = node.getBoundingClientRect();
setTimeout(() => {
window.scrollTo(0, offset.top - 170);
}, 25);
});
}
......@@ -437,13 +431,22 @@ if (document.querySelector('.js-copy-to-clipboard')) {
(global => {
const node = document.querySelector('.c-form [autofocus]');
if (!node) {
return;
if (node) {
node.focus();
}
const offset = node.getBoundingClientRect();
if (location.hash) {
const error = document.querySelector('.c-form--input-wrap--error input') || document.querySelector('.c-form--checkbox--error');
setTimeout(() => {
window.scrollTo(0, offset.top - 170);
}, 25);
if (error) {
error.focus();
return;
}
const input = document.querySelector('.c-form [name="name"]');
if (input) {
input.focus();
}
}
})(window);
......@@ -151,7 +151,7 @@ get_header(); ?>
<img src="/wp-content/themes/biuro/i/vdb/not-found.png" width="85px" height="85px" alt="VDB not found" class="c-vdb--section-img" />
<h3 class="c-vdb--section-heading"><?php _e("Didn't find a job offer you like?", 'biuro'); ?></h3>
<p class="c-vdb--section-content">
Fill out the form and we will contact you
<?php _e('Fill out the form and we will contact you', 'biuro'); ?>
</p>
<?php
$contactsPage = new WP_Query( array(
......@@ -165,7 +165,7 @@ get_header(); ?>
while( $contactsPage->have_posts() ) :
$contactsPage->the_post();
?>
<a href="<?php echo get_the_permalink(); ?>?focus=form" class="o-btn c-btn--vdb"><?php _e('Get a job offer', 'biuro'); ?></a>
<a href="<?php echo get_the_permalink(); ?>?#action" class="o-btn c-btn--vdb"><?php _e('Get a job offer', 'biuro'); ?></a>
<?php
endwhile;
wp_reset_query();
......
......@@ -61,12 +61,6 @@
if ($o):
return $o;
endif;
// $t = $b['total'] - $a['total'];
// if ($t):
// return $t;
// endif;
return $a['name'] > $b['name'];
});
?>
......
......@@ -112,7 +112,7 @@ function getSiteTree($taxonomy, $section)
<img src="/wp-content/themes/biuro/i/vdb/not-found.png" width="85px" height="85px" alt="VDB not found" class="c-vdb--section-img" />
<h3 class="c-vdb--section-heading"><?php _e("Didn't find a job offer you like?", 'biuro'); ?></h3>
<p class="c-vdb--section-content">
Fill out the form and we will contact you
<?php _e('Fill out the form and we will contact you', 'biuro'); ?>
</p>
<?php
$contactsPage = new WP_Query( array(
......@@ -126,7 +126,7 @@ function getSiteTree($taxonomy, $section)
while( $contactsPage->have_posts() ) :
$contactsPage->the_post();
?>
<a href="<?php echo get_the_permalink(); ?>?focus=form" class="o-btn c-btn--vdb"><?php _e('Get a job offer', 'biuro'); ?></a>
<a href="<?php echo get_the_permalink(); ?>?#action" class="o-btn c-btn--vdb"><?php _e('Get a job offer', 'biuro'); ?></a>
<?php
endwhile;
wp_reset_query();
......
<?php
$jobID = get_the_ID();
$pod = pods( 'job', get_the_ID() );
echo do_shortcode('[biuro-contacts--position job_id="' . $jobID . '"]');
echo do_shortcode('[biuro-contacts--position job_id="' . $pod->field( 'livas-id' ) . '"]');
// $requestURL = $_SERVER['REQUEST_URI'];
$requestURL = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
......@@ -12,6 +11,7 @@
$mailto = 'mailto:?subject=' . __('Job position', 'biuro') . ': ' . $pod->field( 'title' ) . '&body=' . __('I think you might like this job offer', 'biuro') . ': ' . $requestURL;
?>
<svg xmlns="http://www.w3.org/2000/svg" class="u-hidden">
<symbol id="ico--job-facebook" viewBox="0 0 9 18">
<path fill="#FFFFFF" d="M2.674,17.125V9.521H0.117V6.5h2.557V4.109c0-1.262,0.354-2.241,1.062-2.938 c0.708-0.697,1.649-1.046,2.822-1.046c0.952,0,1.727,0.044,2.324,0.133v2.689H7.289c-0.598,0-1.007,0.133-1.229,0.398 C5.883,3.567,5.795,3.921,5.795,4.408V6.5h2.822L8.219,9.521H5.795v7.603H2.674z"/>
......
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