Last active
April 2, 2020 02:39
-
-
Save nicooprat/767973a9a4bd2b3758e527caf4a25dd6 to your computer and use it in GitHub Desktop.
Custom Gutenberg bloc with Roots Sage & Blade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{-- | |
Title: Témoignage | |
Description: test | |
Category: formatting | |
Icon: admin-comments | |
Keywords: testimonial quote | |
--}} | |
<blockquote data-{{$block['id']}} class="{{$block['classes']}}"> | |
<p>{{the_field('testimonial')}}</p> | |
<cite> | |
<img src="{{get_field('picture')['url']}}" alt="{{get_field('picture')['alt']}}" /> | |
<span>{{the_field('author')}}</span> | |
</cite> | |
@include('components.btn', get_field('link')) | |
</blockquote> | |
<style type="text/css"> | |
[data-{{$block['id']}}] { | |
background: {{get_field('color')}}; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment