セクションを使用して単純なページにナビゲーションを作成しようとしていますが、画面の右側に配置する必要があります。"vertical-tabs" を使用する場合に Foundation によって提供されるデフォルトのレイアウトは、"左側にタブ、右側にコンテンツ"です。
<div class="section-container vertical-tabs" data-section="vertical-tabs">
<section>
<p class="title" data-section-title><a href="#">Section title 1</a></p>
<div class="content" data-section-content>
<p>Content of section 1.</p>
</div>
</section>
<section>
<p class="title" data-section-title><a href="#">Section title 2</a></p>
<div class="content" data-section-content>
<p>Content of section 2.</p>
</div>
</section>
</div>
レイアウトを「右側にタブ、左側にコンテンツ」に切り替えるにはどうすればよいですか?