--- { "title": "Single Link", "language": "en", "tag": "menu", "parentdir": "menu", "parentPage": "Footer Menu Integration", "parentPageURL": "footer-menu", "altLangPrefix": "footer-menu-link", "altFooter": "../ajax/footer-menu-link", "dateModified": "2018-08-06" } ---

Purpose

A heading followed by a single link, either on its own or in a paragraph. In the menu panel, this is rendered as a single menu item, with the heading as the text.

Code

<footer role="contentinfo" id="wb-info" class="visible-sm visible-md visible-lg wb-navcurr">
	<div class="container">
		<nav role="navigation" class="row">
			<h2>Example Footer</h2>
			<section class="col-sm-4">
				<h3>Heading 1</h3>
				<p><a href="#">Link 1</a></p>
			</section>
			<section class="col-sm-4">
				<h3>Heading 2</h3>
				<p><a href="#">Link 2</a></p>
			</section>
			<section class="col-sm-4">
				<h3>Heading 3</h3>
				<p><a href="#">Link 3</a></p>
			</section>
		</nav>
	</div>
</footer>