~linuxgoose/bocpress

ref: a72c4771fa8b0612594b4b98382b3e2605399074 bocpress/main/templates/main/user_create_step_one.html -rw-r--r-- 2.1 KiB
a72c4771Jordan Robinson add tags to draft posts list 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% extends 'main/layout.html' %}

{% block title %}Sign up{% endblock %}

{% block head_viewport %}
<meta name="viewport" content="width=device-width, user-scalable=no">
{% endblock head_viewport %}

{% block content %}
<main>
    <h1>Welcome to BōcPress!</h1>

    <p>
        Once upon a time, the web was born. One of the early residents of the web
        was the so-called weblog. The weblog — or just blog — was a log on the
        web. A log as in a ship's log: a record of important events in a ship's history.
    </p>
    <p>
        A blog is a mode of publication; as is the book, the magazine, the newspaper,
        even the television show. We see the blog as a first-class citizen in online
        publishing. The simplest form to express and distribute ideas. The simplest
        model for <em>just saying something</em> on the internet.
    </p>
    <p>
        Originally, a blog was an online diary or a list of updates for an online
        product. Today, a blog is a newsletter subscription, or a company's newsroom, or
        anything that anybody writes in the online medium.
    </p>
    <p>
        We, the internet users, now have an amazing selection of publishing and
        distribution options. From tweets to articles to books, from text to image to videos,
        from free software to walled gardens, from simple email delivery to personalised
        algorithms, from bare text to fully-featured online shops. The present is
        bright. There is something for everyone and <strong>we hope BōcPress fulfills
        the needs of those who want to just write</strong>.
    </p>
    <p>
        <strong>
            We offer a place of no distractions to facilitate the most foundational mode
            of intellectual internetic exchange: write a blog entry.
        </strong>
    </p>

    <form method="post">
        {% csrf_token %}
        <input type="submit" value="Continue">
    </form>

    <p>
        Read our <a href="{% url 'methodology' %}">Platform Methodology</a>
        for details on how we operate and how we protect our users’ privacy.
    </p>
</main>
{% endblock content %}