forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
				
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			887 B
		
	
	
	
		
			Twig
		
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			887 B
		
	
	
	
		
			Twig
		
	
	
{#
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Theme override to display a node.
 | 
						|
 */
 | 
						|
#}
 | 
						|
{%
 | 
						|
  set classes = [
 | 
						|
    'node',
 | 
						|
    'node-type-' ~ node.bundle|clean_class,
 | 
						|
	'node-content',
 | 
						|
    node.isPromoted() ? 'node--promoted',
 | 
						|
    node.isSticky() ? 'node--sticky',
 | 
						|
    not node.isPublished() ? 'node--unpublished',
 | 
						|
  ]
 | 
						|
%}
 | 
						|
<div{{ attributes }}>
 | 
						|
  {{ title_prefix }}
 | 
						|
  {{ title_suffix }}
 | 
						|
 | 
						|
{% if teaser %}
 | 
						|
<div class="client-image">
 | 
						|
{{ content.field_image }}
 | 
						|
</div>
 | 
						|
 | 
						|
  {% else %}
 | 
						|
 | 
						|
<div{{ attributes.addClass(classes) }}>
 | 
						|
<div class="row">
 | 
						|
<div class="col-sm-4">
 | 
						|
{{ content.field_image }}
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="col-sm-8">
 | 
						|
<h3 class="node-name-title">{{ label }}</h3>
 | 
						|
{% if content.body | render %}
 | 
						|
<h4>{{ 'Detail' | t }}</h4>
 | 
						|
{{ content.body }}
 | 
						|
{% endif %}
 | 
						|
{% if content.field_link | render %}
 | 
						|
 <a class="btn" href="{{ content.field_link }}">{{ 'Visit Website' | t }}</a>
 | 
						|
 {% endif %}
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
{% endif %}
 | 
						|
</div> |