-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·923 lines (841 loc) · 39.2 KB
/
index.html
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KDQZV64');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Sarah Elizabeth Ricker is a senior software engineer located in Austin, TX">
<meta name="keywords" content="developer, resume, front-end, full-stack, WordPress, php, html, html5, css">
<meta name="author" content="Sarah Elizabeth Ricker">
<title>Sarah Elizabeth Ricker | Portfolio Resume</title>
<!-- Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,700' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Font Awesome CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="assets/css/font-awesome-animation.min.css" rel="stylesheet" media="screen">
<!-- Animate css -->
<link href="assets/css/animate.css" rel="stylesheet">
<!-- Magnific css -->
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Custom styles CSS -->
<link href="assets/css/style.css" rel="stylesheet" media="screen">
<!-- Responsive CSS -->
<link href="assets/css/responsive.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/ico/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" href="assets/images/ico/favicon-32x32.png?v=2" sizes="32x32">
<link rel="icon" type="image/png" href="assets/images/ico/favicon-16x16.png?v=2" sizes="16x16">
<link rel="manifest" href="assets/images/ico/manifest.json?v=2">
<link rel="mask-icon" href="assets/images/ico/safari-pinned-tab.svg?v=2" color="#5bbad5">
<link rel="shortcut icon" href="assets/images/ico/favicon.ico?v=2">
<meta name="msapplication-config" content="assets/images/ico/browserconfig.xml?v=2">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KDQZV64"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Preloader -->
<div id="tt-preloader">
<div id="pre-status">
<div class="preload-placeholder"></div>
</div>
</div>
<!-- Home Section -->
<section id="home" class="tt-fullHeight" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="intro">
<div class="intro-sub">Sarah Elizabeth Ricker</div>
<h1>Software<span> Engineer</span></h1>
<div class="intro-boxes">
<div class="box">
<p>
<strong>Passionate</strong>
<br />about user empathy & building quality into the development process
</p>
</div>
<div class="box">
<p>
<strong>Focused</strong>
<br />on performance optimization,<br /> security, & accessibility standards
</p>
</div>
<div class="box">
<p>
<strong>Inspired</strong>
<br />by intuitive UX trends & always on the lookout for emerging technologies
</p>
</div>
</div>
<div class="social-icons">
<ul class="list-inline">
<li><a href="https://github.com/sarahricker" target="_blank"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/sarahericker" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/sarahricker" target="_blank"><i class="fa fa-facebook"></i></a></li>
</ul>
</div> <!-- /.social-icons -->
</div>
<div class="mouse-icon jump-down ">
<a href="#about">
<i class="fa fa-angle-down faa-pulse animated"></i>
</a>
</div>
</section><!-- End Home Section -->
<!-- Navigation -->
<header class="header">
<nav class="navbar navbar-custom" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#custom-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">SARAH <span>ELIZABETH RICKER</span></a>
</div>
<div class="collapse navbar-collapse" id="custom-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div><!-- .container -->
</nav>
</header><!-- End Navigation -->
<!-- About Section -->
<section id="about" class="about-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">About Me</h2>
<div class="row">
<div class="col-md-4 col-md-push-8">
<div class="biography">
<div class="myphoto">
<img src="assets/images/custom/sarahricker.jpg" alt="">
</div>
<ul>
<li><strong>Name:</strong> Sarah Elizabeth Ricker</li>
<li><strong>Date of birth:</strong> October 17</li>
<li><strong>Languages:</strong> English (Native), French (Working), Spanish (Elementary)</li>
<li><strong>Location:</strong> Austin, TX</li>
</ul>
</div>
</div> <!-- col-md-4 -->
<div class="col-md-8 col-md-pull-4">
<div class="short-info wow fadeInUp">
<h3>Who am I?</h3>
<p>
I’m a senior software engineer working out of Austin, Texas. I'm always looking for an opportunity to meetup with creative like-minded individuals or teams that have a design or tech problem that I can help solve. I'm presently focusing on CI/CD, version-control best practices, automated workflows, and deployment strategies.
</p>
<p>
When I’m not coding, you can find me enjoying (and creating) music, making an artistic mess of my home, or head-down in a great novel.
</p>
</div>
<div class="short-info wow fadeInUp">
<h3>What I Do?</h3>
<p>
I create functional, interactive digital experiences, which help small to medium-size businesses clarify their brand and engage with their customer base.
As a developer, I adhere to the concept that tech, as much as design, is an artform and can be both beautiful and inspiring. I believe in better living through automation, Agile and Lean development practices, and an open mindset to new technologies.
</p>
<ul class="list-check">
<li>Web Application Development</li>
<li>Full Stack Development</li>
<li>Responsive Web Design</li>
<li>WordPress Theme Development</li>
<li>CI/CD</li>
<li>Branding & Identity</li>
<li>SEO/Analytics</li>
<li>Social Media Integration</li>
</ul>
</div>
<!--
<div class="my-signature">
<img src="assets/images/sign.png" alt="">
</div>
-->
<div class="download-button">
<a class="btn btn-primary btn-lg" href="#contact"><i class="fa fa-paper-plane"></i>Send me a message</a>
<a class="btn btn-info btn-lg" href="assets/images/custom/resume-sarah-elizabeth-ricker-2023.pdf" target="_blank"><i class="fa fa-download"></i>download resume</a>
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /.container -->
</section><!-- End About Section -->
<!-- Skills Section -->
<section id="skills" class="skills-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Skills</h2>
<div class="row">
<div class="col-md-6">
<div class="skill-progress">
<div class="skill-title"><h3>HTML 5</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" ><span>95%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>CSS 3 / SCSS</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" ><span>90%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>React.JS</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100" ><span>80%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Typescript</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>70%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<div class="skill-progress">
<div class="skill-title"><h3>Ruby on Rails</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100" ><span>85%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>GoLang</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>PHP</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" ><span>70%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Adobe CC</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100" ><span>70%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
</div><!-- /.col-md-6 -->
</div><!-- /.row -->
<div class="skill-chart text-center">
<h3>Focus Areas</h3>
</div>
<div class="row more-skill text-center">
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="91" data-color="e74c3c">
<span class="percent"></span>
<div class="chart-text">
<span>Website Development</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="85" data-color="2ecc71">
<span class="percent"></span>
<div class="chart-text">
<span>Website Architecture</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="78" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>CI/CD &<br /> Dev Ops</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="78" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>Project Management</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="70" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>SEO & Accessibility</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="75" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>RESTful web services</span>
</div>
</div>
</div>
</div>
</div><!-- /.container -->
</section><!-- End Skills Section -->
<!-- Resume Section -->
<section id="resume" class="resume-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Resume</h2>
<div class="row">
<div class="col-md-12">
<div class="resume-title">
<h3>Experience</h3>
</div>
<div class="resume">
<ul class="timeline">
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2022 - present</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Senior Software Engineer</h3>
<span>WP Engine - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Senior Software Engineer for the CI/CD team, developing WP Engine GitPush deployment service, the GitHub Action for WP Engine Site Deployments, and the Bitbucket Pipeline for WP Engine Site Deployments. </p>
<strong>Core Responsibility:</strong><br />
<p>Enhancing the customer CI/CD experience with dependable
deployment products for the WP Engine platform, developing all
aspects of the WP Engine portal web application (Ruby on Rails,
React.JS, Typescript).
</p>
<p>
Technical interview panelist and reviewer for team candidates.
Mentoring and leveling up junior developers. Delivering appropriate
and effective feedback to teammates through code review and pairing.
Panelist on CI/CD for the WP Engine DE{CODE} 2021 conference.
</p>
<p>
Visit WP Engine online at <a href="https://wpengine.com" target="_blank">wpengine.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month"> 2021 - 2022</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Software Engineer</h3>
<span>WP Engine - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Ruby on Rails / Vue.JS Software Engineer for the Flywheel Support Experience Product & Engineering team (Part of WP Engine).
</p>
<p>
<strong>Core Responsibility:</strong><br />
Developing all aspects of the Flywheel web application software stack (Ruby on Rails, Vue.JS, HAML ). Understanding and addressing the unique challenges faced by WP Engine’s customers and the internal teams supporting them. Technical Interview panelist and reviewer for team candidates. Mentoring and leveling up teammates through code reviews and pairing.
</p>
<p>
Visit Flywheel online at <a href="https://app.getflywheel.com" target="_blank">app.getflywheel.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2019 - 2021</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Developer</h3>
<span>WP Engine - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Full Stack Developer / Designer for the Digital Experience Team.
</p>
<p>
<strong>Core Responsibility:</strong><br />
Building modern enterprise-grade systems for 20+ microservice powered public websites and internal apps. Dev lead for make|SHIFT (Documentary Website), The Thinkery (GiveBack charity website), and Hubspot Transactional Email API Integration Plugin. Accessibility Release Lead for WordPress 5.6 + 5.7.
<p> </p>
<p>
Visit WP Engine online at <a href="https://wpengine.com" target="_blank">wpengine.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">2017 - 2018</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Developer</h3>
<span>Envision Creative Group - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Lead PHP / WordPress Developer for Envision Creative Group, a branding & digital marketing agency focused on client success through collaboration, deliberate strategy and creative partnership.
</p>
<p>
<strong>Core Responsibility:</strong><br />
Responsible for all current agency web projects from initial client discovery through strategy, development, deployment, testing and quality assurance. Also act as client’s primary technical contact and CMS trainer, as well as maintaining production schedules. Project types include new web builds, large-scale redesigns, and ongoing monthly retainer requests.
</p>
<p>
Visit Envision Creative online at <a href="https://www.envision-creative.com/" target="_blank">envision-creative.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2014 - 2017</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Developer</h3>
<span>Workhorse Marketing - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
PHP / WordPress Developer for Workhorse Marketing, a full-service marketing agency that provides strategy, technology and creativity to help clients drive revenue, customer acquisition and retention.
</p>
<p>
<strong>Core Responsibility:</strong><br />
Developed and maintained over 140 responsive WordPress websites based on custom design spec; acted as lead developer for 20+ projects.
</p>
<p>
Visit Workhorse Marketing online at <a href="http://www.workhorse-digital.com" target="_blank">www.workhorse-digital.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">2013 - 2014</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Digital Manager</h3>
<span>Open Mortgage, LLC - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Digital Manager for b2b and b2c campaigns at a nationwide mortgage company. Responsible for 110 WordPress sites. Produced over 250 custom digital and print marketing materials per month. Conducted bi-weekly training sessions on digital content management.
</p>
<p>
<strong>Significant Achievement:</strong><br />
Developed new workflows utilizing Adobe automation, command line scripts, and tools developed in close collaboration with engineering, resulting in an increased production output of over ten-to-one.
</p>
<p>
Visit Open Mortgage online at <a href="http://openmortgage.com/" target="_blank">openmortgage.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2013</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Assistant</h3>
<span>Texas Senate - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Assisted Web Administrator in daily maintenance of Senate websites;
Web-cast, cut, and archived Senate sessions, committee hearings, and press conferences;
Re-designed and developed a new and modern prototype for the Texas SenateKids! website.
</p>
<p>
Visit The Texas Senate online at <a href="http://www.senate.state.tx.us/" target="_blank">www.senate.state.tx.us</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">2012</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Developer</h3>
<span>Attorneys Online - Austin, TX</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Migrated WordPress driven client websites to development servers;
Updated MySQL databases, adjusted HTML, CSS, PHP elements to maintain continuity of site design throughout migration or to upgrade design to current standards;
Tested and edited code for cross-browser compatibility on most web and mobile platforms.
</p>
<p>
Visit Attorneys Online at <a href="http://www.attorneysonlineinc.com/" target="_blank">www.attorneysonlineinc.com</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2011 - 2012</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Web Graduate Assistant</h3>
<span>Shippensburg University - Shippensburg, PA</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>
Maintained existing websites; Produced and edited graphics; Wrote technical training documentations;
Conducted the migration of hand coded university events page to an interactive calendar model;
Analyzed existing Social Media presence and recommended course of action;
Analyzed user experience of student information applications.
</p>
<p>
Visit Shippensburg University online at <a href="http://www.ship.edu" target="_blank">www.ship.edu</a>
</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
</ul>
</div>
</div>
</div><!-- /row -->
<div class="row">
<div class="col-md-12">
<div class="resume-title">
<h3>Education</h3>
</div>
<div class="resume">
<ul class="timeline">
<li>
<div class="posted-date">
<span class="month">2011-2012</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>M.S. Communication Studies</h3>
<span>Shippensburg University - Shippensburg, PA</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Focus: Electronic Media</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2008-2010</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>B.A. English</h3>
<span>Lock Haven University - Lock Haven, PA</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Focus: Writing Concentration</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
</ul>
</div>
</div>
</div><!-- /row -->
</div><!-- /.container -->
</section><!-- End Resume Section -->
<!-- Facts Section -->
<section id="facts" class="facts-section text-center" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="tt-overlay-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="count-wrap">
<div class="col-sm-3 col-xs-6">
<i class="fa fa-flask"></i>
<h3 class="timer">12</h3>
<p>Years of Experience</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-thumbs-up"></i>
<h3 class="timer">583</h3>
<p>Projects Done</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-users"></i>
<h3 class="timer">161</h3>
<p>Happy Clients</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-trophy"></i>
<h3 class="timer">6790</h3>
<p>Billed Hours</p>
</div>
</div><!-- /count-wrap -->
</div><!-- /.col-md-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div>
</section> <!-- End Facts Section -->
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Portfolio</h2>
<!--
<ul class="list-inline" id="filter">
<li><a class="active" data-group="all">All</a></li>
<li><a data-group="design">Design</a></li>
<li><a data-group="web">Web</a></li>
<li><a data-group="interface"></a></li>
<li><a data-group="project-management">Project Management</a></li>
</ul>
-->
<div class="row">
<div id="grid">
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "web", "interface"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="hopdoddy.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-hopdoddy.jpg" alt="image">
<div class="portfolio-info">
<h3>Hopdoddy</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all","web"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="rallyhood.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-rallyhood.jpg" alt="image">
<div class="portfolio-info">
<h3>Rallyhood</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "interface"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="purgatory.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-purgatory.jpg" alt="image">
<div class="portfolio-info">
<h3>Purgatory Resort</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="classadventuretravel.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-class-adventure-travel.jpg" alt="image">
<div class="portfolio-info">
<h3>Class Adventure Travel</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="girlsrockaustin.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-girls-rock-austin.jpg" alt="image">
<div class="portfolio-info">
<h3>Girls Rock Austin</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="parkside.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-parkside.jpg" alt="image">
<div class="portfolio-info">
<h3>Parkside Community School</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "web"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="little-dragon.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-little-dragon.jpg" alt="image">
<div class="portfolio-info">
<h3>Little Dragon</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a href="proudlypropane.html"><i class="fa fa-link"></i> <span class="link-text">View Project</span></a>
</div><!-- /.links -->
<img src="assets/images/portfolio/feat-proudly-propane.jpg" alt="image" >
<div class="portfolio-info">
<h3>Proudly Propane</h3>
</div><!-- /.portfolio-info -->
</div><!-- /.portfolio -->
</div><!-- /.portfolio-bg -->
</div><!-- /.portfolio-item -->
</div><!-- /#grid -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- End Porfolio Section -->
<!-- Hire Section -->
<section class="hire-section text-center" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="hire-section-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>I'm available for freelance projects</h2>
<a href="#contact" class="btn btn-default">Contact Me</a>
</div><!-- /.col-md-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.hire-section-bg -->
</section><!-- End Hire Section -->
<!-- Contact Section -->
<section id="contact" class="contact-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Get in touch</h2>
<div class="row">
<div class="col-md-6">
<div class="contact-form">
<form name="contact-form" id="contactForm" action="https://formspree.io/[email protected]" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" class="form-control" id="name" required="">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="_replyto" class="form-control" id="email" required="">
</div>
<input type="hidden" name="subject" class="form-control" id="subject" value="New message from sarahelizabethricker.com">
<div class="form-group">
<label for="message">Message</label>
<textarea name="message" class="form-control" id="message" rows="5" required=""></textarea>
</div>
<input type="text" name="_gotcha" style="display:none" />
<input type="hidden" name="_next" value="/thank-you.html" />
<button type="submit" name="submit" class="btn btn-primary">Send Message</button>
</form>
</div><!-- /.contact-form -->
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<div class="row center-xs">
<div class="col-sm-12">
<address>
<b>Located in Austin, TX</b>
</address>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="location-map">
<div id="mapCanvas" class="map-canvas"></div>
</div>
</div>
</div>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- End Contact Section -->
<!-- Footer Section -->
<footer class="footer-wrapper">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyright text-center">
<p>© Sarah Elizabeth Ricker. All rights reserved.</p>
</div>
</div>
</div>
</div>
</footer><!-- End Footer Section -->
<!-- Scroll-up -->
<div class="scroll-up">
<a href="#home"><i class="fa fa-angle-up"></i></a>
</div>
<!-- Javascript files -->
<script src="assets/js/jquery.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.stellar.min.js"></script>
<script src="assets/js/jquery.sticky.js"></script>
<script src="assets/js/smoothscroll.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/jquery.countTo.js"></script>
<script src="assets/js/jquery.inview.min.js"></script>
<script src="assets/js/jquery.easypiechart.js"></script>
<script src="assets/js/jquery.shuffle.min.js"></script>
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<script src="assets/js/jquery.fitvids.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD38zuUyOcaX9iC5eG5kocxU3mjy4MWhzc" type="text/javascript"></script>
<script src="assets/js/scripts.js"></script>
</body>
</html>