101 lines
4.3 KiB
PHP
101 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* Pattern
|
|
*
|
|
* @author Themeisle
|
|
* @package raft
|
|
* @since 1.0.5
|
|
*
|
|
* slug: team
|
|
* title: Team Section
|
|
* categories: raft
|
|
* keywords: section, team, members, columns
|
|
*/
|
|
|
|
$strings = array(
|
|
'title' => __( 'Team Section', 'raft' ),
|
|
);
|
|
|
|
$image = RAFT_URL . 'assets/img/shape-02.svg';
|
|
|
|
return array(
|
|
'title' => $strings['title'],
|
|
'categories' => array( 'raft' ),
|
|
'content' => '
|
|
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"64px","bottom":"64px"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"raft-bg-alt","layout":{"inherit":true,"type":"constrained"},"otterConditions":[]} -->
|
|
<div class="wp-block-group alignfull has-raft-bg-alt-background-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:64px;padding-bottom:64px"><!-- wp:group {"align":"wide","otterConditions":[]} -->
|
|
<div class="wp-block-group alignwide"><!-- wp:heading {"fontSize":"x-large"} -->
|
|
<h2 class="has-x-large-font-size">' . esc_html( $strings['title'] ) . '</h2>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:paragraph {"fontSize":"medium"} -->
|
|
<p class="has-medium-font-size">Lorem ipsum dolor sit amet</p>
|
|
<!-- /wp:paragraph --></div>
|
|
<!-- /wp:group -->
|
|
|
|
<!-- wp:group {"align":"wide","layout":{"inherit":false}} -->
|
|
<div class="wp-block-group alignwide"><!-- wp:columns -->
|
|
<div class="wp-block-columns"><!-- wp:column -->
|
|
<div class="wp-block-column"><!-- wp:image {"sizeSlug":"full","linkDestination":"none","className":"is-style-default"} -->
|
|
<figure class="wp-block-image size-full is-style-default"><img src="' . esc_url( $image ) . '" alt=""/></figure>
|
|
<!-- /wp:image -->
|
|
|
|
<!-- wp:heading {"level":3} -->
|
|
<h3>George Cruise</h3>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small"} -->
|
|
<p class="has-small-font-size" style="text-transform:uppercase">CEO / Co-founder</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:social-links {"iconColor":"raft-accent","iconColorValue":"#C26148","openInNewTab":true,"style":{"spacing":{"blockGap":{"top":"8px","left":"8px"}}},"className":"is-style-logos-only"} -->
|
|
<ul class="wp-block-social-links has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"twitter"} /-->
|
|
|
|
<!-- wp:social-link {"url":"#","service":"linkedin"} /--></ul>
|
|
<!-- /wp:social-links --></div>
|
|
<!-- /wp:column -->
|
|
|
|
<!-- wp:column -->
|
|
<div class="wp-block-column"><!-- wp:image {"sizeSlug":"full","linkDestination":"none","className":"is-style-default"} -->
|
|
<figure class="wp-block-image size-full is-style-default"><img src="' . esc_url( $image ) . '" alt=""/></figure>
|
|
<!-- /wp:image -->
|
|
|
|
<!-- wp:heading {"level":3} -->
|
|
<h3>Arnold Stevens</h3>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small"} -->
|
|
<p class="has-small-font-size" style="text-transform:uppercase">CFO / Co-founder</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:social-links {"iconColor":"raft-accent","iconColorValue":"#C26148","openInNewTab":true,"style":{"spacing":{"blockGap":{"top":"8px","left":"8px"}}},"className":"is-style-logos-only"} -->
|
|
<ul class="wp-block-social-links has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"twitter"} /-->
|
|
|
|
<!-- wp:social-link {"url":"#","service":"linkedin"} /--></ul>
|
|
<!-- /wp:social-links --></div>
|
|
<!-- /wp:column -->
|
|
|
|
<!-- wp:column -->
|
|
<div class="wp-block-column"><!-- wp:image {"sizeSlug":"full","linkDestination":"none","className":"is-style-default"} -->
|
|
<figure class="wp-block-image size-full is-style-default"><img src="' . esc_url( $image ) . '" alt=""/></figure>
|
|
<!-- /wp:image -->
|
|
|
|
<!-- wp:heading {"level":3} -->
|
|
<h3>Jessica Barrows</h3>
|
|
<!-- /wp:heading -->
|
|
|
|
<!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"small"} -->
|
|
<p class="has-small-font-size" style="text-transform:uppercase">CTO / Co-founder</p>
|
|
<!-- /wp:paragraph -->
|
|
|
|
<!-- wp:social-links {"iconColor":"raft-accent","iconColorValue":"#C26148","openInNewTab":true,"style":{"spacing":{"blockGap":{"top":"8px","left":"8px"}}},"className":"is-style-logos-only"} -->
|
|
<ul class="wp-block-social-links has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"twitter"} /-->
|
|
|
|
<!-- wp:social-link {"url":"#","service":"linkedin"} /--></ul>
|
|
<!-- /wp:social-links --></div>
|
|
<!-- /wp:column --></div>
|
|
<!-- /wp:columns --></div>
|
|
<!-- /wp:group --></div>
|
|
<!-- /wp:group -->',
|
|
);
|