aboutsummaryrefslogtreecommitdiff
path: root/app/views/index.view.php
blob: f6e2f152e88663157982e7cd55c254659b585d94 (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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php require __DIR__ . '/partials/header.php'; ?>

    <body>

    <section class="section hero" itemscope itemtype="http://schema.org/HomePage">
    <div class="hero-head">

    <?php require __DIR__ . '/partials/navigator.php'; ?>

    </div>
    <div class="hero-body">
        <div class="container">
            <div class="columns is-centered">
                <div class="column is-8">

                    <h1 class="title has-text-weight-normal">
                        <span>
                            Web
                            <span class="has-text-danger">
                                Developer
                            </span>
                        </span>
                    </h1>

                    <h2 class="subtitle has-text-grey-dark has-text-weight-normal">
                        Thedro Neely
                    </h2>

                    <div class="content">

                    <p class="has-text-left has-text-black line__height">
                        My name is Thedro (tee-dro) &mdash; a web developer and self-taught
                        <a href="https://en.wikipedia.org/wiki/Linux">linux and unix-like</a>
                        system administrator.
                        There are many different tools and programming languages I've come across.
                        Welcome to my small part of the web. Here you'll find things I've
                        worked on as well as other interesting discoveries.
                    </p>

                    </div>

                    <div class="columns">
                        <div class="column">
                            <h3 class="heading has-text-black is-marginless is-size-5">
                                Recent Posts
                            </h3>

                            <br>

                            <ul>
                                <li class="link__padding">
                                    <a href="/post/my-sublime-text-setup/">My Sublime Text Setup</a>
                                </li>

                                <li class="link__padding">
                                    <a href="/post/mixing-php-into-hugo/">Mixing PHP into Hugo</a>
                                </li>

                                <li class="link__padding">
                                    <a href="/post/now-dns-pfsense/">Now-DNS and pfSense</a>
                                </li>

                                <br>

                                <li><a class="front__frame" href="post/">More posts<span class="icon"></span></a></li>
                            </ul>
                        </div>

                        <div class="column">
                            <h3 class="heading has-text-black is-marginless is-size-5">
                                Recent Projects
                            </h3>

                            <br>

                            <ul>
                                <li class="link__padding">
                                    <a href="/project/bulma-resume">Bulma Resume</a>
                                </li>

                                <li class="link__padding">
                                    <a href="/project/personal-portfolio/">Personal Portfolio</a>
                                </li>

                                <li class="link__padding">
                                    <a href="/project/voiceover-website/">Voiceover Website</a>
                                </li>

                                <br>

                                <li><a class="front__frame" href="project/">More projects<span class="icon"></span></a></li>
                            </ul>
                        </div>
                    </div>

                  <!--   <div>
                        <img width="200" src="/images/valley.png">
                    </div> -->

                </div>

               <!--  <div class="column is-4 has-text-left">

                    <div class="tabs is-boxed" style="margin-bottom: 0;">
                        <ul>
                            <li class="is-active">
                              <a>
                                <span class="is-size-7">Activity</span>
                              </a>
                            </li>
                            <li>
                              <a style="background-color: #fff; color: #999; border: 0;">
                                <span class="is-size-7">Status</span>
                              </a>
                            </li>
                        </ul>

                    </div>

                    <div style="background-color: #f2f2f2; padding: 10px;border: 1px solid #dbdbdb; min-height: 350px;">

                        <div class="card">
                          <header class="card-header">
                            <p class="card-header-title is-size-7">
                              Last Github Commit
                            </p>
                            <a href="#" class="card-header-icon" aria-label="more options">
                            </a>
                          </header>
                          <div class="card-content" style="padding: 0.5rem;">
                            <div class="content is-size-7">
                              Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec iaculis mauris.
                            </div>
                          </div>
                        </div>

                    </div>

                </div> -->

            </div>
        </div>
    </div>

<?php require __DIR__ . '/partials/footer.php'; ?>