-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1031 lines (989 loc) · 57.9 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
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<title>Dane Whitman - Software Developer</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property='og:title' content='Dane Whitman Portfolio'/>
<meta property='og:image' content='https://cf-danewhitman.netlify.app/img/PortfolioPreview.png'/>
<meta property='og:description' content='Portfolio for Dane Whitman'/>
<meta property='og:url' content='https://cf-danewhitman.netlify.app/'/>
<meta property='og:image:width' content='1200' />
<meta property='og:image:height' content='627' />
<!-- TYPE BELOW IS PROBABLY: 'website' or 'article' or look on https://ogp.me/#types -->
<meta property="og:type" content='website'/>
<!-- Add custon fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Bebas+Neue&family=Fira+Sans:ital,wght@0,100;0,200;0,300;1,100;1,200;1,300&family=Racing+Sans+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!-- Add A Favicon -->
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- Bootstrap Icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Dev Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">
<!--Custom Style Sheets -->
<link rel="stylesheet" href="css/site.css">
<link rel="stylesheet" href="css/blogCard.css">
<link rel="stylesheet" href="css/hoverCard.css">
</head>
<body>
<!--Nav Bar-->
<nav class="navbar navbar-expand-lg fixed-top pe-2 navbar-dark" id="mainNav">
<div class="container-xxl">
<a class="navbar-brand" href="#">
<img src="img/dw_signature_white.png" height="50">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon-cf">
<i class="bi bi-list"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ms-auto mb-2 mb-md-0 text-end">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#coding">Challenges</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Banner Image and Call To Action-->
<header class="container-xxl g-0" id="home">
<div class="mainHeader">
<div class="mainHeader-content h-100 w-100 d-flex justify-content-start align-items-center">
<div class="mainHeader-wrapper">
<div class="mainTitle">DANE<span><img src="/img/dw_signature_black.png" class="mainLogo"></span>
</div>
<div class="mainTitle">WHITMAN</div>
<div class="subTitle">SOFTWARE DEVELOPER</div>
<a class="btn btn-primary mt-3" href="#contact">CONTACT ME</a>
</div>
</div>
</div>
</header>
<!--main content area-->
<main class="container-xxl g-0">
<section class="section-page" id="about">
<h1>About Me</h1>
<div class="row">
<div class="col-12 col-lg-4">
<picture>
<source srcset="/img/dane_profile.jpg" media="(min-width: 991.98px)" />
<source srcset="/img/dane_profile_992.jpg" media="(min-width: 767.98px)" />
<source srcset="/img/dane_profile_768.jpg" media="(min-width: 575.98px)" />
<img src="img/dane_profile_576.jpg" class="img-fluid profilePic">
</picture>
</div>
<div class="col-12 col-lg-8 mt-4 mt-lg-0">
<h2>I'm Dane Whitman, a full-stack web developer</h2>
<p>
I am a software developer based in the United States. I have been building applications
and websites for years. I have been successful in taking a company's idea and bringing it to
life. I mainly use C# and .NET to build web applications. I can take an idea and turn it into
meaningful and useful software products. The ability transform requirements into useful software
helps me prioritize tasks, iterate fast and deliver. Take a look at my portfolio work and let's
see if we can work together on your next project.
</p>
<address>
<div class="row">
<div class="col-12 col-lg-6">
<span>Name:</span>
<span>Dane Whitman</span>
</div>
<div class="col-12 col-lg-6">
<span>Email:</span>
<span>
<a class="linkstyle" href="mailto:[email protected]">[email protected]</a>
</span>
</div>
<div class="col-12">
<span>From:</span>
<span>North Carolina, US</span>
</div>
<div class="col-12 mt-3">
<a href="#" class="btn btn-xl btn-primary">Download Resume</a>
</div>
</div>
</address>
</div>
</div>
</section>
<section class="section-page" id="skills">
<div class="row p-2">
<div class="col-12">
<h1>WHAT I USE</h1>
<p>
I am a creative problem solver. I build full-stack web and
mobile applications. I use C#, SQL, ASP.NET, Javascript,
Xamarin, Bootstrap, HTML and CSS. I have highlighted my key
technical skills that I will bring to your project.
</p>
</div>
</div>
<!--SKILL ICONS-->
<div class="row gy-3 row-cols-1 row-cols-md-2 row-cols-lg-3 p-2">
<div class="col">
<i class="devicon-csharp-plain colored devicons"></i>
<p>I use C# on a daily basis to build websites and mobile
applications. You can see examples of my work implementing
C# in my projects sections</p>
</div>
<div class="col">
<i class="devicon-dotnetcore-plain colored devicons"></i>
<p>I use proven design patterns and frameworks to build
websites. ASP.NET Core Web and MVC fits the bill for most projects.
Visit my projects to see examples.</p>
</div>
<div class="col">
<i class="devicon-javascript-plain devicons"></i>
<p class="card-text">Javascript is the language of the web. I use vanilla js and I am
comfortable with many js frameworks. Check out my challenges section for some js projects.
</p>
</div>
<div class="col">
<i class="devicon-html5-plain colored devicons"></i><i
class="devicon-css3-plain colored devicons"></i><i
class="devicon-bootstrap-plain colored devicons"></i>
<p>I use HTML, CSS and Bootstrap build to beautiful responsive websites. Bootstrap is my go to
CSS framework. Many shy away from front-end I embrace it.</p>
</div>
<div class="col">
<i class="devicon-git-plain colored devicons"></i><i class="devicon-github-original-wordmark devicons"></i>
<p class="card-text">I use git and github for all my projects. Git is the most used source control framework on the planet. I also employ CI/CD for publishing.</p>
</div>
<div class="col">
<i class="devicon-postgresql-plain-wordmark colored devicons"></i>
<p class="card-text">SQL is the language of the database. My projects all utilize a database. I
have used Postgres on all them. I can write SQL on any DB platform.</p>
</div>
</div>
</section>
<section class="section-page" id="projects">
<div class="row mb-2">
<div class="col-12">
<h1>Things I Have Built</h1>
<p>
Showcasing complete functional projects demonstrates what I
can bring to your project. I built these projects from the
ground up to demonstrate skill with front-end, back-end, security
and database development. All these projects are full-stack
web projects that are published so that you can demo them
easily. Contact me to get a complete code walk through.
</p>
</div>
</div>
<div class="row row-cols-1 row-cols-md-3 gy-5">
<!--Bug tracker card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/bugtracker_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/bugtracker_200.jpg">
</picture>
<div class="hc-content">
<p>
A Full Stack bug tracker app built with ASP.NET MVC, C#
and SQL.
</p>
<button type="button" class="btn btn-primary" data-bs-toggle="modal"
data-bs-target="#ProjectOneModal">Learn More</button>
</div>
</div>
</div>
</div>
<!--expense tracker card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/ExpenseTracker_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/ExpenseTracker_200.jpg">
</picture>
<div class="hc-content">
<p>
A Full Stack budgeting app built with ASP.NET MVC, C#
and SQL.
</p>
<button type="button" class="btn bnt-primary" data-bs-toggle="modal"
data-bs-target="#ProjectTwoModal">Learn More</button>
</div>
</div>
</div>
</div>
<!--Blog card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/blog_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/blog_200.jpg">
</picture>
<div class="hc-content">
<p>
A Full Stack blogging platform built with ASP.NET MVC, C#
and SQL.
</p>
<button type="button" class="btn bnt-primary" data-bs-toggle="modal"
data-bs-target="#ProjectThreeModal">Learn More</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-page" id="coding">
<div class="row mb-2">
<div class="col-12">
<h1>Smaller Things I Have Built</h1>
<p>
Coding Challenges are smaller in scope and scale than my full-stack projects. These problems
are
fun to solve and also showcase some UI skills and front-end dev skills with javascript. All
the
projects are published so you can easily see my work in action. Contact me if you would like
to discuss any of my work.
</p>
</div>
</div>
<div class="row row-cols-1 row-cols-md-3 gy-5">
<!--Loan Calculator card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/LoanShark_600.png" media="(min-width: 991.98px)" />
<img src="img/logos/LoanShark_200.png">
</picture>
<div class="hc-content">
<p>
Loan payment calculator. Displays a full amortization schedule for simple
interest loans.
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
<!--taco cat card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/tacocat_600.png" media="(min-width: 991.98px)" />
<img src="img/logos/tacocat_200.png">
</picture>
<div class="hc-content">
<p>
Checks if a string is a palindrome. A classic interview question built as a app.
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
<!--Tasker card-->
<div class="col">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/Tasker_600.png" media="(min-width: 991.98px)" />
<img src="img/logos/Tasker_200.png">
</picture>
<div class="hc-content">
<p>
Builds a to do list. Takser has some features not seen in most to do list apps.
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
<!--super dog card-->
<div class="col ">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/superdog_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/superdog_200.jpg">
</picture>
<div class="hc-content">
<p>
Superdog displays event data and stats. Makes great use of local
storage.
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
<!--Fizz Buzz card-->
<div class="col ">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/fizzbuzz_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/fizzbuzz_200.jpg">
</picture>
<div class="hc-content">
<p>
The class interview question with a twist. What if fizz buzz was an app?
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
<!--notary card-->
<div class="col ">
<div class="hc-wrapper">
<div class="hc-card">
<picture>
<source srcset="/img/logos/notary_600.jpg" media="(min-width: 991.98px)" />
<img src="img/logos/notary_200.jpg">
</picture>
<div class="hc-content">
<p>
Notary reads a book and produces stats. A unique project built with
Javascript.
</p>
<a type="button" class="btn btn-primary" target="_blank"
href="https://superdogevents.coderfoundry.com">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section-cta d-flex align-items-center justify-content-center " id="cta">
<a href="https://learn.coderfoundry.com" class="cta-arrow"><i
class="bi bi-arrow-right-square-fill "></i></a>
<span class="px-3">Want to learn how to build this?<br>Check out <a class="linkstyle"
href="https://learn.coderfoundry.com">Learn.CoderFoundry.com</a></span><a
href="https://learn.coderfoundry.com" class="cta-arrow"><i class="bi bi-arrow-left-square-fill"></i></a>
</section>
<section class="section-page" id="blog">
<h1>Stuff I Write About</h1>
<p>I try to write on my blog on a regular basis. I think it is important to share your knowledge with
others.</p>
<div class="d-flex flex-column align-items-center align-items-md-start" id="blogs">
<!-- <article class="card mb-4 blog-article">
<div class="row g-0 blog-row">
<div class="col-md-4 blog-header">
<a class="blog-image-link" href="#">
<img src="/img/Blog/Blog_FlyingGirl.jpg" class="blog-image" alt="...">
</a>
<div class="blog-date">
<div class="blog-day">11</div>
<div class="blog-month">JANUARY</div>
</div>
</div>
<div class="col-md-8">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h2 class="card-title">MAKE SQL QUERIES FLY</h2>
<p class="card-text line-clamp">
We apply the proverb 'Look before you leap' not only to our content but our
power to repurpose. A company that can synthesize courageously will (eventually)
be able to transition easily. Imagine a combination of HTTP and AJAX. We will
revalue our aptitude to empower without depreciating our capability to implement
wirelessly leads to the capacity to synthesize interactively. Without niches,
you will lack architectures. Spriti introduced new capabilities to the awards
page of the customer journey.
</p>
<div class="text-start">
<a href="#" class="btn btn-primary btn-sm">Read More</a>
</div>
<p class="card-text"><small class="text-muted">Published 3 mins ago</small></p>
</div>
</div>
</div>
</article>
<article class="card mb-4 blog-article">
<div class="row g-0 blog-row">
<div class="col-md-4 blog-header">
<a class="blog-image-link" href="#">
<img src="/img/Blog/Blog_CodeTag.jpg" class="blog-image" alt="...">
</a>
<div class="blog-date">
<div class="blog-day">12</div>
<div class="blog-month">FEBUARY</div>
</div>
</div>
<div class="col-md-8">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h2 class="card-title">The Power of CSS</h2>
<p class="card-text blog-body line-clamp">The copy warned the Little Blind Text,
that
where it came from it would have been rewritten a thousand times and everything
that
was left from its origin would be the word "and" and the Little Blind Text
should
turn around and return to its own, safe country. But nothing the copy said could
convince her and so it didn’t take long until a few insidious Copy Writers
ambushed
her, made her drunk with Longe and Parole and dragged her into their agency,
where
they abused her for their projects again and again. And if she hasn’t been
rewritten, then they are still using her.</p>
<div class="text-start">
<a href="#" class="btn btn-primary btn-sm">Read More</a>
</div>
<p class="card-text"><small class="text-muted">Published 3 mins ago</small></p>
</div>
</div>
</div>
</article>
<article class="card mb-4 blog-article">
<div class="row g-0 blog-row">
<div class="col-md-4 blog-header">
<a class="blog-image-link" href="#">
<img src="/img/Blog/Blog_Database.jpg" class="blog-image" alt="...">
</a>
<div class="blog-date">
<div class="blog-day">13</div>
<div class="blog-month">MARCH</div>
</div>
</div>
<div class="col-md-8">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h2 class="card-title">Storing Images in a DB</h2>
<p class="card-text blog-body line-clamp">Even the all-powerful Pointing has no
control
about the blind texts it is an almost unorthographic life One day however a
small
line of blind text by the name of Lorem Ipsum decided to leave for the far World
of
Grammar. The Big Oxmox advised her not to do so, because there were thousands of
bad
Commas, wild Question Marks and devious Semikoli, but the Little Blind Text
didn’t
listen. She packed her seven versalia, put her initial into the belt and made
herself on the way.</p>
<div class="text-start">
<a href="#" class="btn btn-primary btn-sm">Read More</a>
</div>
<p class="card-text"><small class="text-muted">Published 3 mins ago</small></p>
</div>
</div>
</div>
</article>
<article class="card mb-4 blog-article">
<div class="row g-0 blog-row">
<div class="col-md-4 blog-header">
<a class="blog-image-link" href="#">
<img src="/img/Blog/Blog_DecisionRoad.jpg" class="blog-image" alt="...">
</a>
<div class="blog-date">
<div class="blog-day">21</div>
<div class="blog-month">APRIL</div>
</div>
</div>
<div class="col-md-8 blog-body">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h2 class="card-title">SPA vs MPA frameworks</h2>
<p class="card-text blog-body line-clamp">One morning, when Gregor Samsa woke from
troubled dreams, he found himself transformed in his bed into a horrible vermin.
He
lay on his armour-like back, and if he lifted his head a little he could see his
brown belly, slightly domed and divided by arches into stiff sections. The
bedding
was hardly able to cover it and seemed ready to slide off any moment. His many
legs,
pitifully thin compared with the size of the rest of him, waved about helplessly
as
he looked.</p>
<div class="text-start">
<a href="#" class="btn btn-primary btn-sm">Read More</a>
</div>
<p class="card-text"><small class="text-muted">Published 3 mins ago</small></p>
</div>
</div>
</div>
</article> -->
</div>
</section>
<section class="section-page" id="contact">
<h1>Let's Chat</h1>
<form name="contact" method="POST" data-netlify="true">
<div class="row mb-1">
<div class="col-12 col-md-6">
<label class="form-label">First Name</label>
<input type="text" name="firstName" class="form-control" placeholder="First name"
aria-label="First name" required>
</div>
<div class="col-12 col-md-6">
<label class="form-label">Last Name</label>
<input type="text" name="lastName" class="form-control" placeholder="Last name"
aria-label="Last name" required>
</div>
<div class="col-12 col-md-6">
<label class="form-label">Email</label>
<input type="email" name="email" class="form-control" placeholder="Email" aria-label="Email"
required>
</div>
<div class="col-12 col-md-6">
<label class="form-label">Phone (optional)</label>
<input type="text" name="phone" class="form-control" placeholder="Phone" aria-label="Phone">
</div>
<div class="col-12 col-md-6">
<label class="form-label">Subject</label>
<input type="text" name="subject" class="form-control" placeholder="Subject"
aria-label="Subject" required>
</div>
<div class="col-12 col-md-6">
<label class="form-label">Message</label>
<textarea type="text" rows=4 name="message" class="form-control" placeholder="Message"
aria-label="Message" required></textarea>
</div>
</div>
<button type="submit" class="btn btn-primary mt-2">Submit</button>
</form>
</section>
</main>
<!---footer-->
<footer class="container-fluid mt-5">
<div class="row footer-bg-cta">
<div class="col">
<div class="container py-2 footer-cta">
<div class="row row-cols-1 align-items-center">
<div class="col p-2 text-center ">
<h1 class="footer-message">Let's Work Together!</h1>
<h4 class="footer-message">Need something done? I'm open to new opportunites and ready
to work!</h4>
</div>
</div>
</div>
</div>
</div>
<div class="row footer-main align-items-center py-3">
<div class="col">
<div class="container">
<div class="row align-items-center gy-2">
<div
class="col d-flex justify-content-center justify-content-md-start order-last order-md-first">
© 2021 Dane Whitman</div>
<div class="col d-flex justify-content-center">
<img src="img/dw_signature_white.png" height="50">
</div>
<div class="col-12 col-md d-flex justify-content-center justify-content-md-end">
<a href="#" class="socialicons"><i class="bi bi-linkedin p-2 "></i></a>
<a href="#" class="socialicons"><i class="bi bi-twitter p-2"></i></a>
<a href="#" class="socialicons"><i class="bi bi-youtube p-2"></i></a>
<a href="#" class="socialicons"><i class="bi bi-instagram p-2"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--Modals-->
<!--Project One Modal-->
<div class="modal fade" id="ProjectOneModal" tabindex="-1" aria-labelledby="ProjectOneModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl modal-fullscreen-md-down">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ProjectOneModalLabel">Insecticide</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-12 col-md-5">
<!---Carosuel-->
<div id="carouselProjectOne" class="carousel carousel-dark slide"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselProjectOne" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselProjectOne" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselProjectOne" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target=#carouselProjectOne" data-bs-slide-to="3"
aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/img/logos/bugtracker_600.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen1.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen2.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen3.jpg" class="d-block w-100"
alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselProjectOne" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselProjectOne" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!---End Carosuel-->
</div>
<div class="col-12 col-md-7">
<div>
<h3>Insecticide</h3>
<div>
<p>
Insecticide is a software defect tracking system.
Commonly known as a bug tracker. Insectcide is built
with ASP.NET, MVC, C# and SQL. A role based security
system was implemented to create permission based roles.
The roles of Admin , Project Manager, Developer and
Submitter restrict what the user can see and do. The
software allows for users to submit tickets and those
tickets are tracked through status from Open to
Complete.
</p>
<p>
The system was built with C# and .Net in 3 weeks. The
front end was developed with HTML, Javascript and
Bootstrap. The back-end utlizies MVC and C#. The database
was built with SQL Server and hosted on Azure. Please
visit the site and try it out.
</p>
</div>
<ul class="list-group">
<li class="list-group-item">
<h4>Project Type:</h4>Web Application
</li>
<li class="list-group-item">
<h4>Technologies:</h4>
<p>C#, SQL, ASP.NET MVC, JS, CSS, Bootstrap, HTML5</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Visit Site</button>
</div>
</div>
</div>
</div>
<!--Project Two Modal-->
<div class="modal fade" id="ProjectTwoModal" tabindex="-1" aria-labelledby="ProjectTwoModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl modal-fullscreen-md-down">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ProjectTwoModalLabel">Money Grow</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-12 col-md-5">
<!---Carosuel-->
<div id="carouselProjectTwo" class="carousel carousel-dark slide"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselProjectTwo" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselProjectTwo" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselProjectTwo" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselProjectTwo" data-bs-slide-to="3"
aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/img/logos/ExpenseTracker_600.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen1.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen2.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen3.jpg" class="d-block w-100"
alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselProjectTwo" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselProjectTwo" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!---End Carosuel-->
</div>
<div class="col-12 col-md-7">
<div>
<h3>Money Grow</h3>
<div>
<p>
We apply the proverb 'A rolling stone gathers no moss' not only to our power
shifts but our non-complex administration and newbie-proof use. We believe
we know that it is better to extend iteravely than to engineer seamlessly.
If you transition globally, you may also reintermediate magnetically. Our
end-to-end feature set is unparalleled, but our non-complex administration
and user-proof use. That is a remarkable achievement taking into account
this month's financial state of things! If all of this comes off as mixed-up
to you, that's because it is! Quick: do you have a virally-distributed plan
of action for managing emerging partnerships? Without data hygiene
supervising, you will lack synergies.
</p>
<p>
The system was built with C# and .Net in 3 weeks. The
front end was developed with HTML, Javascript and
Bootstrap. The back-end utlizies MVC and C#. The database
was built with Postgres and hosted on Heroku. Please
visit the site and try it out.
</p>
</div>
<ul class="list-group">
<li class="list-group-item">
<h4>Project Type:</h4>Web Application
</li>
<li class="list-group-item">
<h4>Technologies:</h4>
<p>C#, SQL, ASP.NET MVC, JS, CSS, Bootstrap, HTML5</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Visit Site</button>
</div>
</div>
</div>
</div>
<!--Project Three Modal-->
<div class="modal fade" id="ProjectThreeModal" tabindex="-1" aria-labelledby="ProjectThreeModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl modal-fullscreen-md-down">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ProjectThreeModalLabel">Code Talk</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-12 col-md-5">
<!---Carosuel-->
<div id="carouselProjectThree" class="carousel carousel-dark slide"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselProjectThree"
data-bs-slide-to="0" class="active" aria-current="true"
aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselProjectThree"
data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselProjectThree"
data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselProjectThree"
data-bs-slide-to="3" aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/img/logos/Blog_600.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen1.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen2.jpg" class="d-block w-100"
alt="...">
</div>
<div class="carousel-item">
<img src="/img/screenshots/BugTrackerScreen3.jpg" class="d-block w-100"
alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselProjectThree" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselProjectThree" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!---End Carosuel-->
</div>
<div class="col-12 col-md-7">
<div>
<h3>Code Talk</h3>
<div>
<p>
It sounds wonderful, but it's 100 percent accurate! The experiences factor
is 1000/60/60/24/7/365. It may seem mixed-up, but it's 100 percent true!
Your budget for innovating should be at least one-half of your budget for
engaging should be at least three times your budget for innovating should be
at least one-half of your budget for cultivating. It sounds wonderful, but
it's 100 percent accurate! The experiences factor is short-term. Without
development, you will lack affiliate-based compliance.
</p>
<p>
The system was built with C# and .Net in 3 weeks. The
front end was developed with HTML, Javascript and
Bootstrap. The back-end utlizies MVC and C#. The database
was built with Postgres and hosted on Heroku. Please
visit the site and try it out.
</p>
</div>
<ul class="list-group">
<li class="list-group-item">
<h4>Project Type:</h4>Web Application
</li>
<li class="list-group-item">
<h4>Technologies:</h4>
<p>C#, SQL, ASP.NET MVC, JS, CSS, Bootstrap, HTML5</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Visit Site</button>
</div>
</div>
</div>
</div>
<template id="blog-template">
<article class="card mb-4 blog-article">
<div class="row g-0 blog-row">
<div class="col-md-4 blog-header">
<a class="blog-image-link" data-blog="imageLink">
</a>
<div class="blog-date">
<div class="blog-day" data-blog="day">
</div>
<div class="blog-month" data-blog="month">
</div>
</div>
</div>
<div class="col-md-8">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h2 class="card-title" data-blog="title">
</h2>
<p class="card-text line-clamp" data-blog="content" >
</p>
<div class="text-start">
<a href="#" class="btn btn-primary btn-sm" data-blog="readMoreLink">Read More</a>
</div>
<p class="card-text"><small class="text-muted" data-blog="publishedDate">Published 3 mins ago</small></p>
</div>
</div>
</div>
</article>
</template>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous">
</script>
<script src="/js/ernest.js"></script>
<script>
window.onload = (event) => {
fetchBlogData()
};
window.addEventListener('DOMContentLoaded', event => {
// Navbar shrink function
var navbarShrink = function () {
const navbarCollapsible = document.body.querySelector('#mainNav');
if (!navbarCollapsible) {
return;
}
if (window.scrollY === 0) {
navbarCollapsible.classList.remove('navbar-shrink')
} else {
navbarCollapsible.classList.add('navbar-shrink')
}
};
// Shrink the navbar
navbarShrink();