Skip to content

Instantly share code, notes, and snippets.

@nicooprat
Last active April 2, 2020 02:39
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicooprat/767973a9a4bd2b3758e527caf4a25dd6 to your computer and use it in GitHub Desktop.
Save nicooprat/767973a9a4bd2b3758e527caf4a25dd6 to your computer and use it in GitHub Desktop.
Custom Gutenberg bloc with Roots Sage & Blade
{{--
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