+
+
+
hi my name is weston.
+
+
+
+ I'm a developer, security engineer, and competitive Pokémon tcg player. This site is where I post technical writeups from CTFs, share presentations I've given, and talk about some of my projects.
+
+
+
+
+
+## Featured Writeups
+
+* UTCTF 2024 writeup for [Home on the Range](/writeups/2024-utctf/Home%20on%20the%20Range.html)
+* Sunshine CTF 2023 writeup for [Knowledge Repository](/writeups/2023-sunshine/Knowledge%20Repository.html)
+* Deadface 2021 writeup for [Scanners](/writeups/2021-deadface/Scanners.html)
+* DamCTF 2021 writeup for [Imp3rs0nAt0r-1](/writeups/2021-damctf/Imp3rs0nAt0r-1.html)
+
+## Socials
+
+* Connect with me on [LinkedIn](https://www.linkedin.com/in/weston-belk/)
+* Check out my projects on [Github](https://github.com/westonbelk)
+
+
+
diff --git a/presentations b/presentations
index 2f21474..6333ae7 160000
--- a/presentations
+++ b/presentations
@@ -1 +1 @@
-Subproject commit 2f2147411747c91b28a06a79cb410faa04cb0113
+Subproject commit 6333ae7e2401c78246f19928087c89149eaf2612
diff --git a/style.css b/style.css
index dad08cb..13d7b20 100644
--- a/style.css
+++ b/style.css
@@ -1,3 +1,5 @@
+@import "syntax-highlighter.css";
+
img {
max-width: 100%;
}
@@ -15,11 +17,27 @@ pre {
tab-size: 4;
}
+/* Codeblock styles */
+pre.highlight {
+ border: 1px solid #e5e5e5;
+ border-radius: 8px;
+ padding: 5px 5px;
+}
+
+/* Homepage styles */
+.homepage-flex {
+ gap: 10px;
+}
+.homepage-flex-item {
+ max-width: 696px;
+}
+
/* Nav bar styles */
.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }
.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
-.beige { background-color: #f8f8f8;}
+.navbar { padding-top: 16px; padding-bottom: 16px; }
+a.nav-link { padding-left: 12px; padding-right: 12px; }
/* Sticky footer styles
-------------------------------------------------- */
@@ -33,6 +51,7 @@ body {
}
main {
+ padding-top: 20px;
padding-bottom: 46px;
}
diff --git a/syntax-highlighter.css b/syntax-highlighter.css
new file mode 100644
index 0000000..bfd3803
--- /dev/null
+++ b/syntax-highlighter.css
@@ -0,0 +1,69 @@
+.highlight .hll { background-color: #ffffcc }
+.highlight .c { color: #8f5902; font-style: italic } /* Comment */
+.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
+.highlight .g { color: #000000 } /* Generic */
+.highlight .k { color: #204a87; font-weight: bold } /* Keyword */
+.highlight .l { color: #000000 } /* Literal */
+.highlight .n { color: #000000 } /* Name */
+.highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
+.highlight .x { color: #000000 } /* Other */
+.highlight .p { color: #000000; font-weight: bold } /* Punctuation */
+.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
+.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #a40000 } /* Generic.Deleted */
+.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #ef2929 } /* Generic.Error */
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.highlight .gi { color: #00A000 } /* Generic.Inserted */
+.highlight .go { color: #000000; font-style: italic } /* Generic.Output */
+.highlight .gp { color: #8f5902 } /* Generic.Prompt */
+.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
+.highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
+.highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
+.highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
+.highlight .ld { color: #000000 } /* Literal.Date */
+.highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
+.highlight .s { color: #4e9a06 } /* Literal.String */
+.highlight .na { color: #c4a000 } /* Name.Attribute */
+.highlight .nb { color: #204a87 } /* Name.Builtin */
+.highlight .nc { color: #000000 } /* Name.Class */
+.highlight .no { color: #000000 } /* Name.Constant */
+.highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
+.highlight .ni { color: #ce5c00 } /* Name.Entity */
+.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #000000 } /* Name.Function */
+.highlight .nl { color: #f57900 } /* Name.Label */
+.highlight .nn { color: #000000 } /* Name.Namespace */
+.highlight .nx { color: #000000 } /* Name.Other */
+.highlight .py { color: #000000 } /* Name.Property */
+.highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
+.highlight .nv { color: #000000 } /* Name.Variable */
+.highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
+.highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
+.highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
+.highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
+.highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
+.highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
+.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
+.highlight .sc { color: #4e9a06 } /* Literal.String.Char */
+.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
+.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
+.highlight .se { color: #4e9a06 } /* Literal.String.Escape */
+.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
+.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
+.highlight .sx { color: #4e9a06 } /* Literal.String.Other */
+.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
+.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
+.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
+.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
+.highlight .vc { color: #000000 } /* Name.Variable.Class */
+.highlight .vg { color: #000000 } /* Name.Variable.Global */
+.highlight .vi { color: #000000 } /* Name.Variable.Instance */
+.highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
diff --git a/vendor/reveal.js b/vendor/reveal.js
index a2e69a4..6410c75 160000
--- a/vendor/reveal.js
+++ b/vendor/reveal.js
@@ -1 +1 @@
-Subproject commit a2e69a4b42f9e968406f62073d1c4bf0ea2d3361
+Subproject commit 6410c756ea91ded3fa5f6b40a872523e7b8fe723
diff --git a/web-projects/index.html b/web-projects/index.html
deleted file mode 100644
index f963112..0000000
--- a/web-projects/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
----
-layout: default
-title: westonbelk.com - Web Projects
-hero-title: Web Projects
-hero-text: A collection of side projects that include web technologies or documentation.
----
-
-
- A Pokemon card database and collection tracker. Frontend built in Angular. Backend API written in Golang with
- MongoDB as the database.
-
-
-