styled header and footer

This commit is contained in:
jorge 2021-04-29 00:56:02 +02:00
parent 71ba7c1a56
commit ddbcbd0e54
29 changed files with 489 additions and 200 deletions

View File

@ -9,15 +9,67 @@
*/
?>
<footer class="footer-container">
<div class="footer-grid">
<?php dynamic_sidebar( 'footer-widgets' ); ?>
</div>
</footer>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
</div><!-- Close off-canvas content -->
<?php endif; ?>
<footer class="">
<?php //dynamic_sidebar( 'footer-widgets' ); ?>
<section class="subsection">
<aside class="site-brand archive">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class="">
<h1 class="site-name">
<?php bloginfo( 'name' ); ?>
</h1>
<h2 class="site-description">
<?php bloginfo( 'description' ); ?>
</h2>
</a>
</aside>
<aside class="double newsletter">
<p> subscribe to our <br/>
<span class="h3"><a href="https://arc-hive.zone/newsletter/">news letter</a></span>
</p>
</aside>
<aside class="newsletter">
<p> follow us on <br/>
<span class="h3"><a href="https://www.facebook.com/arc.hive.platform/">facebook</a></span>
<span class="h3"><a href="https://www.instagram.com/arc.hive.zone/">instagram</a></span>
</p>
</aside>
</section>
<section class="subsection">
<aside class="contact">
<p><a href="mailto:info@arc-hive.zone">info@arc-hive.zone</a></p>
<p class="address">Emilia Coranty 16 <br /> 08018 Barcelona Spain</p>
</aside>
<aside class="double partners">
<p>ARC-HIVE partners are:</p>
<ul>
<li class="h5"> <a href="#">Cultivamos Cultura</a></li>
<li class="h5"> <a href="#">Bioart Society</a></li>
<li class="h5"> <a href="#">Kersnikova</a></li>
<li class="h5"> <a href="#">Institute of natural sciences</a></li>
<li class="h5"> <a href="#">Kontejner</a></li>
<li class="h5"> <a href="#">Hangar</a></li>
</ul>
</aside>
<aside class="co-founded">
<a href="#" class="brand-logo eu">
<h1 class="site-name">Co-Funded bye the Creative Europe Programme of the European Union</h1>
</a>
</aside>
</section>
<section class="subsection">
<aside class="copyright">
Hosted, maintained and coded by <a href="https://hangar.org">Hangar</a>
</aside>
<aside class="double">
</aside>
<aside class="legal-credits">
Visual identity by <a href="http://oficinadedisseny.net/">Oficina de disseny</a>
</aside>
</section>
</footer>
<?php wp_footer(); ?>
</body>

View File

@ -1,7 +1,7 @@
<?php
/**
* Author: Ole Fredrik Lie
* URL: http://olefredrik.com
* Author: Jorge - vitrubio.net
* URL: https://vitrubio.net
*
* FoundationPress functions and definitions
*
@ -28,7 +28,7 @@ require_once( 'library/navigation.php' );
/** Add menu walkers for top-bar and off-canvas */
require_once( 'library/class-foundationpress-top-bar-walker.php' );
require_once( 'library/class-foundationpress-mobile-walker.php' );
//require_once( 'library/class-foundationpress-mobile-walker.php' );
/** Create widget areas in sidebar and footer */
require_once( 'library/widget-areas.php' );
@ -43,7 +43,7 @@ require_once( 'library/enqueue-scripts.php' );
require_once( 'library/theme-support.php' );
/** Add Nav Options to Customer */
require_once( 'library/custom-nav.php' );
//require_once( 'library/custom-nav.php' );
/** Change WP's sticky post class */
require_once( 'library/sticky-posts.php' );

View File

@ -1,19 +1,8 @@
'use strict';
//import plugins from 'gulp-load-plugins';
//import yargs from 'yargs';
//import browser from 'browser-sync';
//import gulp from 'gulp';
//import rimraf from 'rimraf';
//import yaml from 'js-yaml';
//import fs from 'fs';
import dateFormat from 'dateformat';
//import webpackStream from 'webpack-stream';
//import webpack2 from 'webpack';
//import named from 'vinyl-named';
import log from 'fancy-log';
import colors from 'ansi-colors';
import plugins from 'gulp-load-plugins';
import yargs from 'yargs';
import browser from 'browser-sync';
@ -48,7 +37,6 @@ const DEV = !!(yargs.argv.dev);
// Load settings from settings.yml
//const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig();
// Load settings from settings.yml
//const { PORT, UNCSS_OPTIONS, PATHS } = loadConfig();
const { PORT, UNCSS_OPTIONS, PATHS, BROWSERSYNC, COMPATIBILITY, REVISIONING } = loadConfig();
@ -134,27 +122,6 @@ function copy() {
// Compile Sass into CSS
// In production, the CSS is compressed
//function sass() {
// return gulp.src(['src/assets/scss/app.scss','src/assets/scss/editor.scss'])
// .pipe($.sourcemaps.init())
// .pipe($.sass({
// includePaths: PATHS.sass
// })
// .on('error', $.sass.logError))
// .pipe($.autoprefixer({
// browsers: COMPATIBILITY
// }))
//
// .pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
// .pipe($.if(!PRODUCTION, $.sourcemaps.write()))
// .pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
// .pipe(gulp.dest(PATHS.dist + '/assets/css'))
// .pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
// .pipe(gulp.dest(PATHS.dist + '/assets/css'))
// .pipe(browser.reload({ stream: true }));
//}
// Compile Sass into CSS
// In production, the CSS is compressed
function sass() {
@ -204,68 +171,6 @@ let webpackConfig = {
}
// Combine JavaScript into one file
// In production, the file is minified
//const webpack = {
// config: {
// module: {
// rules: [
// {
// test: /.js$/,
// loader: 'babel-loader',
// exclude: /node_modules(?![\\\/]foundation-sites)/,
// },
// ],
// },
// externals: {
// jquery: 'jQuery',
// },
// },
//
// changeHandler(err, stats) {
// log('[webpack]', stats.toString({
// colors: true,
// }));
//
// browser.reload();
// },
//
// build() {
// return gulp.src(PATHS.entries)
// .pipe(named())
// .pipe(webpackStream(webpack.config, webpack2))
// .pipe($.if(PRODUCTION, $.uglify()
// .on('error', e => { console.log(e); }),
// ))
// .pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
// .pipe(gulp.dest(PATHS.dist + '/assets/js'))
// .pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
// .pipe(gulp.dest(PATHS.dist + '/assets/js'));
// },
//
// watch() {
// const watchConfig = Object.assign(webpack.config, {
// watch: true,
// devtool: 'inline-source-map',
// });
//
// return gulp.src(PATHS.entries)
// .pipe(named())
// .pipe(webpackStream(watchConfig, webpack2, webpack.changeHandler)
// .on('error', (err) => {
// log('[webpack:error]', err.toString({
// colors: true,
// }));
// }),
// )
// .pipe(gulp.dest(PATHS.dist + '/assets/js'));
// },
//};
//
//gulp.task('webpack:build', webpack.build);
//gulp.task('webpack:watch', webpack.watch);
// Combine JavaScript into one file
// In production, the file is minified
function javascript() {
@ -302,6 +207,8 @@ function images() {
})
])))
.pipe(gulp.dest(PATHS.dist + '/assets/images'));
}
function img() {
return gulp.src('src/assets/img/**/*')
.pipe($.if(PRODUCTION, $.imagemin([
$.imagemin.jpegtran({
@ -357,18 +264,6 @@ gulp.task('phpcbf', function () {
.pipe(gulp.dest('.'));
});
// Start BrowserSync to preview the site in
//function server(done) {
// browser.init({
// proxy: BROWSERSYNC.url,
//
// ui: {
// port: 8080
// },
//
// });
// done();
//}
// Start a server with BrowserSync to preview the site in
function server(done) {
browser.init({
@ -386,47 +281,32 @@ function reload(done) {
// Watch for changes to static assets, pages, Sass, and JavaScript
function watch() {
gulp.watch(PATHS.assets, copy);
// gulp.watch('src/assets/scss/**/*.scss', sass)
// .on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
// .on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
// gulp.watch('src/assets/scss/**/*.scss').on('all', sass);
gulp.watch('src/assets/scss/**/*.scss', sass)
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
gulp.watch('src/assets/images/**/*').on('all', gulp.series(images, browser.reload));
gulp.watch('src/assets/img/**/*').on('all', gulp.series(img, browser.reload));
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
gulp.watch('**/*.php', reload)
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
gulp.watch('src/assets/images/**/*', gulp.series(images, reload));
//}
// Watch for changes to static assets, pages, Sass, and JavaScript
//function watch() {
// gulp.watch(PATHS.assets, copy);
// gulp.watch('src/pages/**/*.html').on('all', gulp.series(pages, browser.reload));
// gulp.watch('src/{layouts,partials}/**/*.html').on('all', gulp.series(resetPages, pages, browser.reload));
// gulp.watch('src/data/**/*.{js,json,yml}').on('all', gulp.series(resetPages, pages, browser.reload));
// gulp.watch('src/helpers/**/*.js').on('all', gulp.series(resetPages, pages, browser.reload));
gulp.watch('src/assets/scss/**/*.scss').on('all', sass);
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
gulp.watch('src/assets/img/**/*').on('all', gulp.series(images, browser.reload));
// gulp.watch('src/styleguide/**').on('all', gulp.series(styleGuide, browser.reload));
}
// Build the "dist" folder by running all of the below tasks
gulp.task('build',
//gulp.series(clean, gulp.parallel(sass, 'webpack:build', images, copy)));
gulp.series(clean, gulp.parallel(javascript, images), sass));
gulp.series(clean, gulp.parallel(javascript, images, img,copy), sass));
// Build the site, run the server, and watch for file changes
gulp.task('default',
//gulp.series('build', server, gulp.parallel('webpack:watch', watch)));
gulp.series('build', server, watch));
// Package task
gulp.task('package',
gulp.series('build', archive));
// Build the "dist" folder by running all of the below tasks
// Sass must be run later so UnCSS can search for used classes in the others assets.
//gulp.task('build',
//gulp.series(clean, gulp.parallel(pages, javascript, images, copy), sass, styleGuide));
// Build the site, run the server, and watch for file changes
//gulp.task('default',
// gulp.series('build', server, watch));

View File

@ -18,33 +18,21 @@
</head>
<body <?php body_class(); ?>>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
<?php get_template_part( 'template-parts/mobile-off-canvas' ); ?>
<?php endif; ?>
<header class="site-header" role="banner">
<div class="site-title-bar title-bar" <?php foundationpress_title_bar_responsive_toggle(); ?>>
<div class="title-bar-left">
<button aria-label="<?php _e( 'Main Menu', 'foundationpress' ); ?>" class="menu-icon" type="button" data-toggle="<?php foundationpress_mobile_menu_id(); ?>"></button>
<span class="site-mobile-title title-bar-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</span>
</div>
</div>
<nav class="site-navigation top-bar" role="navigation" id="<?php foundationpress_mobile_menu_id(); ?>">
<div class="top-bar-left">
<div class="site-desktop-title top-bar-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</div>
</div>
<div class="top-bar-right">
<header class="" role="banner">
<main class="">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class="site-brand archive">
<h1 class="site-name">
<?php bloginfo( 'name' ); ?>
</h1>
<h2 class="site-description">
<?php bloginfo( 'description' ); ?>
</h2>
</a>
</main>
<nav>
<menu class="">
<?php foundationpress_top_bar_r(); ?>
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) : ?>
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?>
<?php endif; ?>
</div>
</nav>
</menu>
</nav>
</header>

View File

@ -15,9 +15,8 @@
get_header(); ?>
<div class="main-container">
<div class="main-grid">
<main class="main-content">
<article>
<main>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
@ -43,8 +42,7 @@ get_header(); ?>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer();

View File

@ -20,13 +20,28 @@ register_nav_menus(
*
* @link http://codex.wordpress.org/Function_Reference/wp_nav_menu
*/
//if ( ! function_exists( 'foundationpress_top_bar_r' ) ) {
// function foundationpress_top_bar_r() {
// wp_nav_menu(
// array(
// 'container' => false,
// 'menu_class' => 'dropdown menu desktop-menu',
// 'items_wrap' => '<ul id="%1$s" class="%2$s" data-dropdown-menu>%3$s</ul>',
// 'theme_location' => 'top-bar-r',
// 'depth' => 3,
// 'fallback_cb' => false,
// 'walker' => new Foundationpress_Top_Bar_Walker(),
// )
// );
// }
//}
if ( ! function_exists( 'foundationpress_top_bar_r' ) ) {
function foundationpress_top_bar_r() {
wp_nav_menu(
array(
'container' => false,
'menu_class' => 'dropdown menu desktop-menu',
'items_wrap' => '<ul id="%1$s" class="%2$s" data-dropdown-menu>%3$s</ul>',
'menu_class' => 'menu',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'theme_location' => 'top-bar-r',
'depth' => 3,
'fallback_cb' => false,
@ -40,21 +55,22 @@ if ( ! function_exists( 'foundationpress_top_bar_r' ) ) {
/**
* Mobile navigation - topbar (default) or offcanvas
*/
if ( ! function_exists( 'foundationpress_mobile_nav' ) ) {
function foundationpress_mobile_nav() {
wp_nav_menu(
array(
'container' => false, // Remove nav container
'menu' => __( 'mobile-nav', 'foundationpress' ),
'menu_class' => 'vertical menu',
'theme_location' => 'mobile-nav',
'items_wrap' => '<ul id="%1$s" class="%2$s" data-accordion-menu data-submenu-toggle="true">%3$s</ul>',
'fallback_cb' => false,
'walker' => new Foundationpress_Mobile_Walker(),
)
);
}
}
//if ( ! function_exists( 'foundationpress_mobile_nav' ) ) {
// function foundationpress_mobile_nav() {
// wp_nav_menu(
// array(
// 'container' => false, // Remove nav container
// 'menu' => __( 'mobile-nav', 'foundationpress' ),
// 'menu_class' => 'vertical menu',
// 'theme_location' => 'mobile-nav',
// 'items_wrap' => '<ul id="%1$s" class="%2$s" data-accordion-menu data-submenu-toggle="true">%3$s</ul>',
// 'fallback_cb' => false,
// 'walker' => new Foundationpress_Mobile_Walker(),
// )
// );
// }
//}
/**

View File

@ -0,0 +1,24 @@
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0
*/
?>
<footer class="footer-container">
<div class="footer-grid">
<?php dynamic_sidebar( 'footer-widgets' ); ?>
</div>
</footer>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
</div><!-- Close off-canvas content -->
<?php endif; ?>
<?php wp_footer(); ?>
</body>
</html>

View File

@ -0,0 +1,58 @@
<?php
/**
* Author: Ole Fredrik Lie
* URL: http://olefredrik.com
*
* FoundationPress functions and definitions
*
* Set up the theme and provides some helper functions, which are used in the
* theme as custom template tags. Others are attached to action and filter
* hooks in WordPress to change core functionality.
*
* @link https://codex.wordpress.org/Theme_Development
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0
*/
/** Various clean up functions */
require_once( 'library/cleanup.php' );
/** Required for Foundation to work properly */
require_once( 'library/foundation.php' );
/** Format comments */
require_once( 'library/class-foundationpress-comments.php' );
/** Register all navigation menus */
require_once( 'library/navigation.php' );
/** Add menu walkers for top-bar and off-canvas */
require_once( 'library/class-foundationpress-top-bar-walker.php' );
require_once( 'library/class-foundationpress-mobile-walker.php' );
/** Create widget areas in sidebar and footer */
require_once( 'library/widget-areas.php' );
/** Return entry meta information for posts */
require_once( 'library/entry-meta.php' );
/** Enqueue scripts */
require_once( 'library/enqueue-scripts.php' );
/** Add theme support */
require_once( 'library/theme-support.php' );
/** Add Nav Options to Customer */
require_once( 'library/custom-nav.php' );
/** Change WP's sticky post class */
require_once( 'library/sticky-posts.php' );
/** Configure responsive image sizes */
require_once( 'library/responsive-images.php' );
/** Gutenberg editor support */
require_once( 'library/gutenberg.php' );
/** If your site requires protocol relative url's for theme assets, uncomment the line below */
// require_once( 'library/class-foundationpress-protocol-relative-theme-assets.php' );

View File

@ -0,0 +1,50 @@
<?php
/**
* The template for displaying the header
*
* Displays all of the head element and everything up until the "container" div.
*
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0
*/
?>
<!doctype html>
<html class="no-js" <?php language_attributes(); ?> >
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
<?php get_template_part( 'template-parts/mobile-off-canvas' ); ?>
<?php endif; ?>
<header class="site-header" role="banner">
<div class="site-title-bar title-bar" <?php foundationpress_title_bar_responsive_toggle(); ?>>
<div class="title-bar-left">
<button aria-label="<?php _e( 'Main Menu', 'foundationpress' ); ?>" class="menu-icon" type="button" data-toggle="<?php foundationpress_mobile_menu_id(); ?>"></button>
<span class="site-mobile-title title-bar-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</span>
</div>
</div>
<nav class="site-navigation top-bar" role="navigation" id="<?php foundationpress_mobile_menu_id(); ?>">
<div class="top-bar-left">
<div class="site-desktop-title top-bar-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</div>
</div>
<div class="top-bar-right">
<?php foundationpress_top_bar_r(); ?>
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) : ?>
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?>
<?php endif; ?>
</div>
</nav>
</header>

View File

@ -0,0 +1,50 @@
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* e.g., it puts together the home page when no home.php file exists.
*
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
*
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0
*/
get_header(); ?>
<div class="main-container">
<div class="main-grid">
<main class="main-content">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; // End have_posts() check. ?>
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php
if ( function_exists( 'foundationpress_pagination' ) ) :
foundationpress_pagination();
elseif ( is_paged() ) :
?>
<nav id="post-nav">
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'foundationpress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'foundationpress' ) ); ?></div>
</nav>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer();

View File

@ -0,0 +1,12 @@
<?php
/**
* The sidebar containing the main widget area
*
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0
*/
?>
<aside class="sidebar">
<?php dynamic_sidebar( 'sidebar-widgets' ); ?>
</aside>

View File

@ -1,6 +1,6 @@
<?php
/**
* The sidebar containing the main widget area
* The breaking div containing the main widget area
*
* @package arcHIVE-theme
* @since arcHIVE-theme 1.0.0

View File

@ -0,0 +1,146 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 908.7 167" style="enable-background:new 0 0 908.7 167;" xml:space="preserve">
<g id="Layer_1">
<path d="M660.8,0v167h247.8V0H660.8z M825.4,53.8l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0l-2.1,1.5l-3,2.2l1.1,3.4
l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5L825.4,53.8z M725.4,90.2l0.7-2.3l1.1-3.4l-3-2.2
l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1l-2.1,1.5l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1
l-3.2,2.1L725.4,90.2z M744.1,109l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5
l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L744.1,109z M744.2,55.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0L744.2,55.2z
M763.6,128.5l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L763.6,128.5z M763.9,35.8l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3
l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L763.9,35.8z M790.9,135.8l-3,2.2
l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2
l1.2,3.4l3.8,0.1l2.6,0.1L790.9,135.8z M790.9,28.6l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4
l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L790.9,28.6z M817.9,128.7l-3,2.2l1.1,3.4l0.7,2.3
l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0
L817.9,128.7z M818.1,35.8l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1
l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L818.1,35.8z M837.5,109.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L837.5,109.2z
M844.8,82.3l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L844.8,82.3z"/>
</g>
<g id="Layer_4">
<g>
<path d="M273.6,28.5c-1.5,7.7-7.3,12-15,12c-10.1,0-15.9-7.4-15.9-18.1c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
c-1.1-4.5-4.4-7.4-9.5-7.4c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H273.6z"/>
<path d="M302.1,27c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C295.7,13.5,302.1,17.7,302.1,27z
M289.5,36.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C282.3,33.4,285.8,36.2,289.5,36.2z"/>
<path d="M306.9,29.1v-4.6h15.5v4.6H306.9z"/>
<path d="M328.8,12.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2V14h5v3.8h-5v22h-5v-22h-3.6V14h3.6V12.3z"/>
<path d="M359.1,36.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V14h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V14h5
v25.8h-5V36.2z"/>
<path d="M375.8,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V14h5V17.8z"/>
<path d="M416.2,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M409.3,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C416.4,20.6,413.1,17.7,409.3,17.7z"/>
<path d="M445.6,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C442.4,36.2,444.5,34.7,445.6,32.3z M431.4,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C434.9,17.6,432,19.6,431.4,24.5z"/>
<path d="M473.5,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M466.6,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C473.7,20.6,470.4,17.7,466.6,17.7z"/>
<path d="M501.5,5v12.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v3.6h-5V5
H501.5z M508.4,36.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C501.3,33.4,504.5,36.3,508.4,36.3z"/>
<path d="M523.8,48.2v-4h2c2.7,0,3.8-0.2,5.1-3.9l0.2-0.6L521.8,14h5.5l6.2,19.2l6.1-19.2h5.2l-9.1,26.4c-2.1,6.1-3.6,7.8-9.5,7.8
H523.8z"/>
<path d="M560.4,7.4h5V14h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4h-3.6c-5.2,0-6.4-1.3-6.4-6.6V17.8h-3.9V14h3.9V7.4z"/>
<path d="M580.3,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V5h5V17.8z"/>
<path d="M621,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,36.2,619.9,34.7,621,32.3z M606.8,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,17.6,607.4,19.6,606.8,24.5z"/>
<path d="M31,84.5c-1.5,7.7-7.3,12-15,12C5.9,96.5,0,89.1,0,78.4c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
C24.5,67.8,21.1,65,16,65c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H31z"/>
<path d="M49.3,75.1C48.4,75,47.6,75,46.8,75c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7c0.4,0,1,0,1.4,0
V75.1z"/>
<path d="M70.5,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H56.2
c0.5,4.8,3.5,7.7,7.5,7.7C67.3,92.2,69.4,90.7,70.5,88.3z M56.3,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C59.8,73.6,56.9,75.6,56.3,80.5z
"/>
<path d="M79,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C82.9,96.5,79,93.6,79,88.9z M96.6,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M108.6,63.4h5V70h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H115c-5.2,0-6.4-1.3-6.4-6.6V73.8h-3.9V70h3.9V63.4z"/>
<path d="M128.5,61v5.5h-5V61H128.5z M128.5,70v25.8h-5V70H128.5z"/>
<path d="M143.9,89.2l6.5-19.2h5.2L146,95.8h-4.6L131.9,70h5.5L143.9,89.2z"/>
<path d="M176.1,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C172.9,92.2,175.1,90.7,176.1,88.3z M161.9,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C165.5,73.6,162.6,75.6,161.9,80.5z"/>
<path d="M198.1,61h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V61z"/>
<path d="M243,92.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V70h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V70h5
v25.8h-5V92.2z"/>
<path d="M268.2,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M295,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C288.6,69.5,295,73.7,295,83z
M282.4,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C275.2,89.4,278.7,92.2,282.4,92.2z"/>
<path d="M305,70v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V70H305
z M311.9,92.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C304.8,89.4,308.1,92.3,311.9,92.3z"/>
<path d="M347.2,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C344,92.2,346.1,90.7,347.2,88.3z M333,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C336.5,73.6,333.6,75.6,333,80.5
z"/>
<path d="M380.3,61c8.1,0,14.6,1.6,14.6,10.7c0,8.7-6.2,10.6-14.6,10.6h-5.7v13.5h-5.5V61H380.3z M374.6,65.5v12.2h6
c4.8,0,8.6-0.6,8.6-6c0-5.7-4-6.2-8.7-6.2H374.6z"/>
<path d="M412.1,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M438.9,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C432.5,69.5,438.9,73.7,438.9,83z
M426.3,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C419.1,89.4,422.6,92.2,426.3,92.2z"/>
<path d="M461.5,70h5v22.8c0,4.8-1,7.3-2.8,9.1c-2,2.1-5.1,3.1-9,3.1c-5.8,0-10-2.5-10.8-7.9h5.1c0.5,2.4,2,3.7,5.8,3.7
c2.4,0,4.1-0.7,5.2-1.9c1-1.1,1.5-2.4,1.5-5.1v-2.7c-1.6,2.6-4.2,4.3-8,4.3c-6,0-11-4.8-11-13c0-8.2,5-12.9,11-12.9
c3.8,0,6.4,1.6,8,4.3V70z M454.6,73.7c-4.1,0-6.8,3.3-6.8,8.8c0,5.6,2.7,8.9,6.8,8.9c3.8,0,7-2.7,7-8.9
C461.7,76.3,458.5,73.7,454.6,73.7z"/>
<path d="M486.6,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M488,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C492,96.5,488,93.6,488,88.9z M505.7,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M521.6,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M565,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M621,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,92.2,619.9,90.7,621,88.3z M606.8,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,73.6,607.4,75.6,606.8,80.5z"/>
<path d="M159.7,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C153.2,125.5,159.7,129.7,159.7,139z M147.1,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C139.8,145.4,143.3,148.2,147.1,148.2z"/>
<path d="M166,124.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2v1.8h5v3.8h-5v22h-5v-22h-3.6V126h3.6V124.3z"/>
<path d="M192.6,119.4h5v6.6h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H199c-5.2,0-6.4-1.3-6.4-6.6v-15.4h-3.9V126h3.9V119.4z
"/>
<path d="M212.5,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V117h5V129.8z"/>
<path d="M253.2,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C250,148.2,252.1,146.7,253.2,144.3z M239,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C242.5,129.6,239.7,131.6,239,136.5z"/>
<path d="M275.2,117h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V117z"/>
<path d="M320.1,148.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V126h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2v-14
h5v25.8h-5V148.2z"/>
<path d="M345.3,131.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V126h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V131.1z"/>
<path d="M372.1,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C365.7,125.5,372.1,129.7,372.1,139z M359.5,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C352.3,145.4,355.8,148.2,359.5,148.2z"/>
<path d="M382.1,126v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V126
H382.1z M389,148.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3S385.1,148.3,389,148.3z"/>
<path d="M424.3,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H410
c0.5,4.8,3.5,7.7,7.5,7.7C421.1,148.2,423.2,146.7,424.3,144.3z M410.1,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C413.6,129.6,410.7,131.6,410.1,136.5z"/>
<path d="M432.8,144.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C436.7,152.5,432.8,149.6,432.8,144.9z M450.4,139.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V139.5
z"/>
<path d="M466.4,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M506,117v20.9c0,6.6,2.1,9.9,8.6,9.9c6.5,0,8.6-3.7,8.6-10.3V117h5.5v20.2c0,10.6-4,15.2-14.1,15.2
c-9.8,0-14.1-3.9-14.1-14.9V117H506z"/>
<path d="M540.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M568.2,117v5.5h-5V117H568.2z M568.2,126v25.8h-5V126H568.2z"/>
<path d="M598.3,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C591.8,125.5,598.3,129.7,598.3,139z M585.7,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C578.4,145.4,581.9,148.2,585.7,148.2z"/>
<path d="M608.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

View File

@ -1,9 +1,27 @@
.brand-logo,.site-brand {
.site-name {
.site-name,.site-description {
display: none;
}
.logo {
max-width: 10rem;
&::before {
content: '';
display:inline-block;
margin-top:-$global-padding;
width: 100%;
height: $global-padding*5;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
&.archive{
&::before {
max-width: 10rem;
background-image: url('../img/ARC-HIVE-logo.svg');
}
}
&.eu{
&::before {
max-width: 15rem;
background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
}
}
}

View File

@ -1,10 +1,6 @@
@include breakpoint(small) {
footer {
// @include xy-grid-container();
background-color: $secondary-color;
//.h1,.h2,.h3,.h4,.h5,.h6 {
//font-variant:all-small-caps;
//}
a {
color: $body-font-color;
&:hover {

View File

@ -5,6 +5,7 @@
@include xy-cell(shrink);
@include flex-align(left, middle);
padding: $global-padding*2;
min-width: 14rem;
}
nav {
@include xy-cell(auto);

View File

@ -19,7 +19,7 @@
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
}
?>
<?php foundationpress_entry_meta(); ?>
<?php //foundationpress_entry_meta(); ?>
</header>
<div class="entry-content">
<?php the_content(); ?>