cleaning
This commit is contained in:
parent
4616762afd
commit
a942629b1a
@ -5,6 +5,7 @@ title: Home
|
|||||||
|
|
||||||
I am a first-year college student, studying Software Engineering at Sheridan College. I develop software both as a hobby, and professionally, and have been programming since I was in the 5th grade. I am also a Canadian amateur radio operator (callsign **VA3ZZA**), and the former Lead Software Developer at [Raider Robotics](https://github.com/frc5024).
|
I am a first-year college student, studying Software Engineering at Sheridan College. I develop software both as a hobby, and professionally, and have been programming since I was in the 5th grade. I am also a Canadian amateur radio operator (callsign **VA3ZZA**), and the former Lead Software Developer at [Raider Robotics](https://github.com/frc5024).
|
||||||
|
|
||||||
|
|
||||||
## What I have been up to
|
## What I have been up to
|
||||||
|
|
||||||
<ul class="events-list">
|
<ul class="events-list">
|
||||||
@ -55,3 +56,5 @@ I am a first-year college student, studying Software Engineering at Sheridan Col
|
|||||||
<li><div><span>Mar</span> <span>FRC Georgian district event <em>quarter-finalists</em> as part of Raider Robotics</span></div></li>
|
<li><div><span>Mar</span> <span>FRC Georgian district event <em>quarter-finalists</em> as part of Raider Robotics</span></div></li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,5 +10,4 @@ extra:
|
|||||||
|
|
||||||
I write about software, hardware, life, and school. ([RSS](/rss.xml))
|
I write about software, hardware, life, and school. ([RSS](/rss.xml))
|
||||||
|
|
||||||
---
|
|
||||||
<br>
|
<br>
|
@ -8,7 +8,8 @@ h6 {
|
|||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
p,
|
p,
|
||||||
li {
|
li,
|
||||||
|
span {
|
||||||
font-family: "Roboto", sans-serif;
|
font-family: "Roboto", sans-serif;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
@ -25,7 +26,8 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin-bottom: 30px;
|
// margin-bottom: 30px;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-hidden {
|
.mobile-hidden {
|
||||||
@ -166,6 +168,13 @@ ul {
|
|||||||
|
|
||||||
.blog-post-listing-item {
|
.blog-post-listing-item {
|
||||||
color: black !important;
|
color: black !important;
|
||||||
|
& > div {
|
||||||
|
border-left: solid rgb(201, 201, 201) 5px;
|
||||||
|
&:hover {
|
||||||
|
border-left: solid black 5px;
|
||||||
|
}
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
h4,
|
h4,
|
||||||
h1,
|
h1,
|
||||||
@ -174,22 +183,58 @@ ul {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1{
|
h1 {
|
||||||
margin-bottom:10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color:rgb(85, 85, 85) !important;
|
color: rgb(85, 85, 85) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pn-previous, .pn-next {
|
.pn-previous,
|
||||||
border:1px solid black;
|
.pn-next {
|
||||||
border-radius:5px;
|
border: 1px solid black;
|
||||||
padding:5px;
|
border-radius: 5px;
|
||||||
color:black !important;
|
padding: 5px;
|
||||||
&:hover{
|
color: black !important;
|
||||||
color:rgb(85, 85, 85) !important;
|
&:hover {
|
||||||
|
color: rgb(85, 85, 85) !important;
|
||||||
border: 1px solid rgb(85, 85, 85) !important;
|
border: 1px solid rgb(85, 85, 85) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
background-color: rgb(201, 201, 201);
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
color: black;
|
||||||
|
margin-top: 30px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.carded-section {
|
||||||
|
border: 1px solid black;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
& > .header {
|
||||||
|
background-color: aliceblue;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 30px;
|
||||||
|
padding-top: 15px;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
|
||||||
|
border-bottom: 1px solid rgb(201, 201, 201);
|
||||||
|
& > span {
|
||||||
|
font-size: 1.5em;
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
& > .content {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -78,8 +78,8 @@
|
|||||||
<p>
|
<p>
|
||||||
<a href="/">Home</a> |
|
<a href="/">Home</a> |
|
||||||
<a href="/blog">Blog</a> |
|
<a href="/blog">Blog</a> |
|
||||||
<a href="/hobbies">Hobbies</a> |
|
<a href="/hobbies">Hobbies</a>
|
||||||
<a href="/whois">WHOIS</a>
|
{# <a href="/whois">WHOIS</a> #}
|
||||||
{# <a href="/rfc">RFC</a> #}
|
{# <a href="/rfc">RFC</a> #}
|
||||||
</p>
|
</p>
|
||||||
<hr>
|
<hr>
|
||||||
@ -88,13 +88,14 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
</div>
|
</div>
|
||||||
<div id="ampr-notice" style="display:none;">
|
|
||||||
<br>
|
{# <div id="footer">
|
||||||
<p style="text-align: center;color:gray;">
|
<div>
|
||||||
You are being served via AMPRNet [<a href="http://router.va3zza.com" style="color:rgb(46, 46, 141)">More
|
<h2>Evan Pratten</h2>
|
||||||
Info</a>]
|
</div>
|
||||||
</p>
|
<div>
|
||||||
</div>
|
</div>
|
||||||
|
</div> #}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
@ -63,7 +63,6 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<hr>
|
|
||||||
<br>
|
<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
8
templates/shortcodes/card_section.html
Normal file
8
templates/shortcodes/card_section.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<div class="carded-section">
|
||||||
|
<div class="header">
|
||||||
|
<span>{{title}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
{{body | safe}}
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
x
Reference in New Issue
Block a user