/**
     * Builds out the options panel.
     *
     * If we were using the Settings API as it was intended we would use
     * do_settings_sections here.  But as we don't want the settings wrapped in a table,
     * we'll call our own custom optionsrara_fields.  See options-interface.php
     * for specifics on how each individual field is generated.
     *
     * Nonces are provided using the settings_fields()
     *
     * @since 1.7.0
     */
    function options_page()
    {
        ?>

		<div id="optionsrara-wrap" class="wrap">

		<?php 
        $menu = $this->menu_settings();
        ?>

		<div class="them_option_block clearfix">
		<div class="theme_option_title">
		<h2>

		<?php 
        $my_theme = wp_get_theme();
        ?>

            <?php 
        _e('Theme Options by', 'rara-clean');
        ?>
 <!-- <a href=" <?php 
        echo $my_theme->get('AuthorURI');
        ?>
 ">  <?php 
        echo $my_theme->get('TextDomain');
        ?>
 </a>  -->  </h2>
		</div>
		<div class="theme_option_link"><a href="<?php 
        echo $my_theme->get('AuthorURI');
        ?>
" title="Rara Theme" target="_blank"><img src="<?php 
        echo get_template_directory_uri();
        ?>
/option-panel/images/logo.png" height="32px"></a> </div>
		</div>


		<div class="donate-info">

				<a href="<?php 
        echo $my_theme->get('ThemeURI');
        ?>
" target="_blank" class="demo">
                    <?php 
        _e('View Demo', 'rara-clean');
        ?>
				</a>

				<div id="social-share">
					
		        </div>

        </div>
	    <h2 class="nav-tab-wrapper">
	        <?php 
        echo Options_rara_Interface::optionsrara_tabs();
        ?>
	    </h2>

	    <?php 
        settings_errors('options-rara');
        ?>

	    <div id="optionsrara-metabox" class="metabox-holder">
		    <div id="optionsrara" class="postbox">
				<form action="options.php" method="post">
				<?php 
        settings_fields('optionsrara');
        ?>
				<?php 
        Options_rara_Interface::optionsrara_fields();
        /* Settings */
        ?>
				<div id="optionsrara-submit">
					<input type="submit" class="button-primary" name="update" value="<?php 
        esc_attr_e('Save All Changes', 'rara-clean');
        ?>
" />
					<input type="submit" class="reset-button button-secondary" name="reset" value="<?php 
        esc_attr_e('Restore Defaults', 'rara-clean');
        ?>
" onclick="return confirm( '<?php 
        print esc_js(__('Click OK to reset. Any theme settings will be lost!', 'rara-clean'));
        ?>
' );" />
					<div class="clear"></div>
				</div>
				</form>
			</div> <!-- / #container -->
		</div>
		<?php 
        do_action('optionsrara_after');
        ?>
		</div> <!-- / .wrap -->

	<?php 
    }