summaryrefslogtreecommitdiff
path: root/views/mbrowsers.ejs
blob: f7b11aba0cfdea2accec87290434ade1ea80725e (plain)
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
<%- include('partials/header') %>

<div class='content'>
    <div class='leftie'>
        <ul>
            <% if(!currentUser) { %>
                <li><a href='/search/all'>Search for blog posts</a></li>
                <li><a href='/'>About</a></li>
                <li><a href='/browsers'><strong>Minimal browsers</strong></a></li>
            <% } else { %>
                <li><a href='/blog/<%= currentUser.username %>'>My Blog</a></li>
                <li><a href='/blog/<%= currentUser.username %>/new'>Create a blog post</a></li>
                <li><a href='/search/all'>Search for blog posts</a></li>
                <li><a href='/'>About</a></li>
                <li><a href='/browsers'><strong>Minimal browsers</strong></a></li>
            <% } %>
        </ul>
    </div>
    <div class='rightie'>
        <h3>Sblog and minimal browsers</h3>
        <p>This app was made with the intention of being used in minimal browsers.</p>
        <p><a href="https://luakit.github.io/">Luakit</a> and <a href="https://surf.suckless.org/">surf</a> are my personal favorites. Give it a try for the ultimum minimal experience.</p>
    </div>
</div>

<%- include('partials/footer') %>