Prev/Next Uikit only

Component with custom prev/next markup.


The code to generate the component is this:


            <div class="prev-next-content">
                <!-- prev -->
                <div class="prev-next prev d-print-none" itemscope itemtype="http://schema.org/Article">
                    <!-- image -->
                    <a href="#" class="img ui-box topBottom-leftRightCorner" title="Good" itemprop="url">
                        <span class="ui-border-element">
                            <img src="https://picsum.photos/id/481/70/70" alt="Good" itemprop="image">
                        </span>
                    </a>
                    <!-- title -->
                    <a href="#" title="Good" class="title">
                        <span>Prev</span>
                        <h3 itemprop="headline">Good</h3>
                    </a>
                </div>
                <!-- /prev -->

                <!-- next -->
                <div class="prev-next next d-print-none" itemscope itemtype="http://schema.org/Article">
                    <!-- image -->
                    <a href="#" class="img ui-box topBottom-leftRightCorner" title="Notice" itemprop="url">
                        <span class="ui-border-element">
                            <img src="https://picsum.photos/id/486/70/70" alt="Notice" itemprop="image">
                        </span>
                    </a>
                    <!-- title -->
                    <a href="#" title="Notice" class="title">
                        <span>Next</span>
                        <h3 itemprop="headline">Notice</h3>
                    </a>
                </div> 
            </div>