view templates/base.html @ 486:e3a73084715a

about: update URLs and prefer https:// The URLs for other version control systems on the 'About' page needed updating. Although they pretty much all resolve to the right places via redirection, it wouldn't hurt to have the links go straight to the source anyway.
author Bradley Jones <brdjns@gmx.us>
date Fri, 07 Sep 2018 13:54:33 +1200
parents c65b81353b8f
children 175611e81401
line wrap: on
line source

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <link href="{{ url_for('static', filename='css/styles.css') }}" type="text/css" rel="stylesheet">
        <script type="text/javascript" src="{{ url_for('static', filename='js/common.js') }}"></script>
        <script type="text/javascript" src="{{ url_for('static', filename='sources.js') }}"></script>
        <script type="text/javascript" src="{{ url_for('static', filename='js/download.js') }}"></script>
        <link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico">

        <title>Mercurial SCM</title>
    </head>
    <body id="home">
        <h1 id="logo"><a href="/">mercurial</a></h1>
            
        <ul id="nav">
            <li><a href="/about">About</a></li>
            <li><a href="/guide">Guide</a></li>
            <li><a href="/downloads">Download</a></li>
            <li><a href="https://www.mercurial-scm.org/wiki/UsingExtensions">Extensions</a></li>
            <li><a href="https://www.mercurial-scm.org/wiki/">News/Wiki</a></li>
        </ul>
        
        <form id="search" method="get" action="https://www.mercurial-scm.org/wiki/Mercurial">
        <input type="hidden" name="action" value="fullsearch">
        <input type="hidden" name="context" value="180">
            <fieldset>
                <legend>Search form</legend>
                <label for="keyword">keyword</label>
                <input class="text" type="text" name="value"
                value="Search the Wiki" id="keyword" onclick="resetBar();">
                <input class="submit" type="submit" value="Title"
                name="titlesearch" alt="Search Titles"> 
            </fieldset>
        </form>
        
        <div id="content">
            {% block main %}
                <div class="row">
                    <div class="col big">
                        {% block content %}
                            No content on this page yet.
                        {% endblock %}
                    </div>
                    <div class="col">
                        {% block sidebar %}
                        <a class="download" href="/downloads" onClick="return window.dl.download();">
                            <strong>Download now</strong>
                            Mercurial <em id="download-version"></em>
                            <span id="download-description"></span>
                        </a>
                        <dl>
                            <dt>Another OS?<br><em>Get Mercurial for:</em></dt>
                            <dd><a href="/downloads">Mac OS X</a></dd>
                            <dd><a href="/downloads">Windows</a></dd>
                            <dd><a href="/downloads">other</a></dd>
                        </dl>
                        {% endblock %}
                    </div>
                </div>
            {% endblock %}
        </div>
        
        <div id="footer">
            <a href="https://plus.google.com/112477627281544607334"
                rel="publisher">G+</a> /
            design by <a href="http://www.designpunct.ro">punct</a> /
            design courtesy of <a href="http://www.bitbucket.org/">bitbucket</a> /
            licensed under <a href="http://www.gnu.org/licenses/gpl-2.0.txt">GPLv2</a> /
            <a href="/thepage">about this website</a>
        </div>
        
    </body>
</html>