summary refs log tree commit diff
path: root/index.php
blob: 5b9c660074bc028246c7ff825a1ddb9816fa108a (plain) (blame)
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
<?php
include 'header.php';
?>
    <!-- Header
   ================================================== -->
    <header id="home">

        <nav id="nav-wrap">

            <a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
            <a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>

            <ul id="nav" class="nav">
                <li class="current">
                    <a class="smoothscroll" href="#home">Home</a>
                </li>
                <li>
                    <a class="smoothscroll" href="#about">About</a>
                </li>
                <li>
                    <a class="smoothscroll" href="#contact">Contact</a>
                </li>
                <li>
                    <a href="https://tildegit.org/ben/resume/raw/branch/master/resume.pdf">Resume</a>
                </li>
            </ul>
            <!-- end #nav -->

        </nav>
        <!-- end #nav-wrap -->

        <div class="row banner">
            <div class="banner-text">
                <h1 class="responsive-headline">Hello,
                    <br>I'm Benjamin Harris</h1>
                <hr>
                <h3>
                    <a class="smoothscroll" href="#about">I'm a Michigan-based software developer. Scroll down to learn more.</a>
                </h3>
                <hr />
                <?php include 'social.html'; ?>
            </div>
        </div>

        <p class="scrolldown">
            <a class="smoothscroll" href="#about">
                <i class="icon-down-circle"></i>
            </a>
        </p>

    </header>
    <!-- Header End -->


    <!-- About Section
   ================================================== -->
    <section id="about">

        <div class="row">

            <div class="three columns">

                <img class="profile-pic" src="images/profilepic.jpg" alt="" />

            </div>

            <div class="nine columns main-col">

                <h2>About Me</h2>

                <p>
                    I studied computer science at Northern Michigan University. 
                    I like writing code and doing sysadmin work. I love to
                    travel and have lived in Ecuador and Switzerland.
                </p>

                <p>
                    I run a public access unix system: <a href="https://tilde.team">tilde.team</a> and have been working on a multi-tilde collaborative effort to provide cool open-source services at the <a href="https://tildeverse.org">tildeverse</a>. Check out <a href="https://tilde.team/~ben/">my tilde page</a>!
                </p>

                <p>Check out what I'm up to
                    <a href="/now/">now</a>.</p>

                <div class="row">

                    <div class="columns download">
                        <p>
                            <a href="https://tildegit.org/ben/resume/raw/branch/master/resume.pdf" class="button">
                                <i class="fa fa-download"></i>Download/View Resume</a>
                        </p>
                    </div>

                </div>
                <!-- end row -->

            </div>
            <!-- end .main-col -->

        </div>

    </section>
    <!-- About Section End-->


    <!-- Contact Section
   ================================================== -->
    <section id="contact">

        <div class="row section-head">

            <div class="two columns header-col">

                <h1>
                    <span>Get In Touch.</span>
                </h1>

            </div>

            <div class="ten columns">

                <p class="lead">
                    Let me know if you have any cool ideas or want to work 
                    together on something! Feel free to send me a message 
                    on irc (benharri on freenode, ben on <a href="https://tilde.chat">tilde.chat</a>) 
                    or shoot me an email (ben at this domain).
                </p>

            </div>

        </div>



        </div>

    </section>
    <!-- Contact Section End-->


    <?php include 'footer.php';