Viewing File: /usr/local/cpanel/3rdparty/share/site_templates/personal/index.html.tt

<!DOCTYPE HTML>
<!--
    Identity by HTML5 UP
    html5up.net | @n33co
    Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
    <head>
        [% IF fullName.length %]
        <title>[% fullName | html %]</title>
        [% END %]
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
        <link rel="stylesheet" href="assets/css/main.css" />
        <!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
        <!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
        <noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
    </head>
    <body class="is-loading">

        <!-- Wrapper -->
            <div id="wrapper">

                <!-- Main -->
                    <section id="main">
                        [% IF avatarURL.length OR fullName.length OR tagLine.length %]
                        <header>
                            [% IF avatarURL.length %]
                            <span class="avatar">
                                <img src="[% avatarURL | url %]" alt="Avatar" />
                            </span>
                            [% END %]

                            [% IF fullName.length %]
                            <h1>[% fullName | html %]</h1>
                            [% END %]

                            [% IF tagLine.length %]
                            <p>[% tagLine | html %]</p>
                            [% END %]
                        </header>
                        <hr />
                        [% END %]

                        [% IF aboutMe.length %]
                        <p>[% aboutMe | html %]</p>
                        <hr />
                        [% END %]

                        [% IF physicalAddress.length OR phoneNumber.length %]
                        <p>
                            [% physicalAddress | html %]
                            [% IF phoneNumber.defined %] | [% phoneNumber | html %] [% END %]
                        </p>
                        [% END %]

                        <footer>
                            [% IF emailAddress.length OR linkedinLink.length OR twitterLink.length OR facebookLink.length %]
                            <ul class="icons">
                                [% IF emailAddress.length %]
                                <li><a href="mailto:[% emailAddress | uri %]" class="fa-envelope" title="Email">Email</a></li>
                                [% END %]

                                [% IF twitterLink.length %]
                                <li><a href="[% twitterLink | url %]" class="fa-twitter" target="_blank" title="Twitter">Twitter</a></li>
                                [% END %]

                                [% IF facebookLink.length %]
                                <li><a href="[% facebookLink | url %]" class="fa-facebook" target="_blank" title="Facebook">Facebook</a></li>
                                [% END %]

                                [% IF linkedinLink.length %]
                                <li><a href="[% linkedinLink | url %]" class="fa-linkedin" target="_blank"  title="LinkedIn">LinkedIn</a></li>
                                [% END %]
                            </ul>
                            [% END %]
                        </footer>
                    </section>

                <!-- Footer -->
                    <footer id="footer">
                        <ul class="copyright">
                            [% IF fullName.length %]
                            <li>&copy; [% fullName | html %]</li>
                            [% END %]
                            <li>Design: <a href="//html5up.net">HTML5 UP</a></li>
                        </ul>
                    </footer>

            </div>

        <!-- Scripts -->
            <!--[if lte IE 8]><script src="assets/js/respond.min.js"></script><![endif]-->
            <script>
                if ('addEventListener' in window) {
                    window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
                    document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
                }
            </script>

            [% IF google_analytics_key.length %]
                <script type="text/javascript">

                  var _gaq = _gaq || [];
                  _gaq.push(['_setAccount', '[% google_analytics_key | html %]']);
                  _gaq.push(['_trackPageview']);

                  (function() {
                    var ga = document.createElement('script');
                    ga.type = 'text/javascript'; ga.async = true;
                    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                    var s = document.getElementsByTagName('script')[0];
                    s.parentNode.insertBefore(ga, s);
                  })();

                </script>
            [% END %]
    </body>
</html>
Back to Directory File Manager