<div class="logo-group-wrapper">
    <section class="text-block" role="region" aria-labelledby="accreditations-to-progress-your-career">
        <h2 id="accreditations-to-progress-your-career">Accreditations to progress your career</h2>
        <p>We’ve designed the BA (Hons) Accounting and Finance course to ensure that, if you select the relevant module pathway, you’ll be eligible to apply for the maximum exemptions offered by ACCA and for a range of exemptions offered by CIMA, ICAEW and
            AIA. This means you can achieve membership of your professional body more quickly and accelerate your career progression.</p>
        <p>You could choose to pursue other professional accounting qualifications too. Our course gives you the chance to apply for a range of exemptions offered by:</p>
        <ul>
            <li>Chartered Institute of Management Accountants (CIMA)</li>
            <li>Institute of Chartered Accountants in England and Wales (ICAEW)</li>
            <li>Association of International Accountants (AIA)</li>
            <li>CPA Australia</li>
        </ul>
        <div class="logo-group logo-group-4-per-row">
            <div class="logo">
                <img src="../../images/logo-group/acca-logo.png" alt="ACCA logo" class="logo-img" />
            </div>
            <div class="logo">
                <img src="../../images/logo-group/cima-logo.jpg" alt="CIMA university partner" class="logo-img" />
            </div>
            <div class="logo">
                <img src="../../images/logo-group/cpa-australia-logo.png" alt="CPA Australia logo" class="logo-img" />
            </div>
            <div class="logo">
                <img src="../../images/logo-group/icaew-logo.gif" alt="ICAEW logo" class="logo-img" />
            </div>
        </div>
        <p class="logo-group-cta">
            <a href="#" class="button-outline" title="Accreditations to progress your career" role="button" tabindex="0" data-scroll>
        Find out more about our accredited courses
            <span class="button-overlay"><span>
                        Find out more about our accredited courses
                    </span></span></a> </p>
    </section>
</div>
<div class="logo-group-wrapper">
	{% embed '@text-block' with {title: title} %}
	    {% block content %}
			{{ intro }}
			{% if logos %}
				<div class="logo-group logo-group-{{ per_row }}-per-row">
					{% for logo in logos %}
						<div class="logo">
							{% if logo.href %}<a href="{{ logo.href }}" class="logo-a">{% endif %}
								<img src="{{ logo.image_path | path }}" alt="{{ logo.alt }}" class="logo-img" />
							{% if logo.href %}</a>{% endif %}
						</div>
					{% endfor %}
				</div>
			{% endif %}
			{% if callToAction and callToAction.label and callToAction.href %}
				<p class="logo-group-cta">
			        {% include '@button' with {
			            label: callToAction.label,
			            href: callToAction.href,
			            scheme: (scheme == 'black' or scheme == 'blue') ? 'white' : ''
			        } %}
		        </p>
	        {% endif %}
	    {% endblock %}
	{% endembed %}
</div>
{
  "title": "Accreditations to progress your career",
  "per_row": 4,
  "logos": [
    {
      "image_path": "/images/logo-group/acca-logo.png",
      "alt": "ACCA logo"
    },
    {
      "image_path": "/images/logo-group/cima-logo.jpg",
      "alt": "CIMA university partner"
    },
    {
      "image_path": "/images/logo-group/cpa-australia-logo.png",
      "alt": "CPA Australia logo"
    },
    {
      "image_path": "/images/logo-group/icaew-logo.gif",
      "alt": "ICAEW logo"
    }
  ],
  "intro": "<p>We’ve designed the BA (Hons) Accounting and Finance course to ensure that, if you select the relevant module pathway, you’ll be eligible to apply for the maximum exemptions offered by ACCA and for a range of exemptions offered by CIMA, ICAEW and AIA. This means you can achieve membership of your professional body more quickly and accelerate your career progression.</p><p>You could choose to pursue other professional accounting qualifications too. Our course gives you the chance to apply for a range of exemptions offered by:</p><ul><li>Chartered Institute of Management Accountants (CIMA)</li><li>Institute of Chartered Accountants in England and Wales (ICAEW)</li><li>Association of International Accountants (AIA)</li><li>CPA Australia</li></ul>",
  "callToAction": {
    "label": "Find out more about our accredited courses",
    "href": "#"
  }
}
  • Content:
    .logo {
    	lost-column: 4/8 2;
    	padding: .75em .5em;
    
    	.logo-group-1-per-row & {
    		lost-column: 6/8 2;
    	}
    
    	@include for-tablet-portrait-up {
    		lost-column: 4/12 3;
    	}
    
    	@include for-tablet-landscape-up {
    		lost-column: 2/10 5;
    
    		.logo-group-2-per-row & {
    			lost-column: 4/12 3;
    		}
    	}
    
    	&-group { 
    		display: flex;
            flex-wrap: wrap;
            lost-utility: clearfix;
            position: relative;
            z-index: 1;
            align-items: center;
            margin-bottom: px-to-em(25, $body-font-size);
            lost-align: center;
    
            @include for-tablet-portrait-up {
    	        margin-bottom: px-to-em(40, $body-font-size-tablet-portrait-up);
    	    }
    
            &-cta {
            	text-align: center;
            }
    	}
    
    	&-a {
    		@include disable-underlines;
    		display: block;
    	}
    
    	&-img {
    		max-height: 100px;
    		display: block;
    		margin: 0 auto;
    
    		.logo-group-1-per-row &,
    		.logo-group-2-per-row & {
    
    			@include for-tablet-landscape-up {
    				max-height: 125px;
    			}
    		}
    	}
    }
  • URL: /components/raw/logo-group/logo-group.scss
  • Filesystem Path: components/components/logo-group/logo-group.scss
  • Size: 973 Bytes

Logo Group

A logo or group of logos to a page, the optional heading and paragraph options allow context to be given to the user. In a group of 1 or 2 logos the size of the logos on tablet and desktop will be larger.

Key Features

  • Optional heading
  • Optional paragraph of text of intro text
  • Optional call to action button

Properties

  • title [required, string]
  • intro [optional, string, html]
  • logos [required, Array of Logo objects]
  • callToAction [Optional, LinkObject]
  • href [optional, string]
  • image_path [required, string(path)]
  • alt [required, string]

LinkObject

  • label [required, string]
  • href [required, string]