Update how about info retrieved

This commit is contained in:
2024-06-10 19:16:13 +01:00
parent 2ee338c381
commit feb3b59400
5 changed files with 18 additions and 22 deletions

View File

@@ -9,4 +9,6 @@ socials:
- link: https://github.com/mgrove36 - link: https://github.com/mgrove36
icon: github icon: github
- link: https://linkedin.com/in/mgrove36 - link: https://linkedin.com/in/mgrove36
icon: linkedin icon: linkedin
about: |
A cyber security & software engineer with a special interest in application and network security, I am currently studying MEng Computer Science with Cyber Security at the University of Southampton. I am also an ex- RAF Cadet Warrant Officer and Lord-Lieutenants Cadet, where I represented all cadets in Berkshire; currently an Officer Cadet at Southampton University Air Squadron and Service Instructor in the Combined Cadet Force.

View File

@@ -1,5 +0,0 @@
A cyber security & software engineer with a special interest in application and network security, I am currently studying MEng Computer Science with Cyber Security at the University of Southampton. I am also an ex- RAF Cadet Warrant Officer and Lord-Lieutenants Cadet, where I represented all cadets in Berkshire; currently an Officer Cadet at Southampton University Air Squadron and Service Instructor in the Combined Cadet Force.
I love running and flying - fuelled by a successful career as an RAF cadet. During this time I reached the rank of Cadet Warrant Officer and, at the Royal International Air Tattoo, was the first CCF cadet to earn "Best Cadet" in its 30+ year history. I was also awarded a highly selective flying scholarship, and the position of Lord-Lieutenant's Cadet: an aide to the monarch's representative in Berkshire, representing the county's cadets, in 2021/22. Now furthering this interest as an Officer Cadet at Southampton University Air Squadron, I also volunteer as staff at a cadet unit.
I have historically volunteered with several organisations and societies, most recently as Vice President at Southampton University Cyber Security Society - organising weekly sessions and liaising with students, staff, and industry partners to ensure the success of the society. I also volunteer with the Jon Egging Trust: a charity that aims to inspire underprivileged young people to reach their full potentials.

View File

@@ -4,8 +4,7 @@ permalink: /
--- ---
<section class="about-text"> <section class="about-text">
{% capture about %}{% include about.md %}{% endcapture %} {{ site.data.profile.about | markdownify }}
{{ about | markdownify }}
</section> </section>

View File

@@ -33,15 +33,15 @@
hsla(240, 1%, 18%, 0.251) 0%, hsla(240, 1%, 18%, 0.251) 0%,
hsla(240, 2%, 11%, 0) 100% hsla(240, 2%, 11%, 0) 100%
), hsl(240, 2%, 13%); ), hsl(240, 2%, 13%);
--bg-gradient-yellow-1: linear-gradient( --bg-gradient-primary-1: linear-gradient(
to bottom right, to bottom right,
hsl(45, 100%, 71%) 0%, var(--secondary-color) 0%,
hsla(36, 100%, 69%, 0) 50% hsla(357, 100%, 72%, 0) 50%
); );
--bg-gradient-yellow-2: linear-gradient( --bg-gradient-primary-2: linear-gradient(
135deg, 135deg,
hsla(45, 100%, 71%, 0.251) 0%, hsla(357, 92%, 63%, 0.251) 0%,
hsla(35, 100%, 68%, 0) 59.86% hsla(357, 100%, 72%, 0) 59.86%
), hsl(240, 2%, 13%); ), hsl(240, 2%, 13%);
--border-gradient-onyx: linear-gradient( --border-gradient-onyx: linear-gradient(
to bottom right, to bottom right,
@@ -49,9 +49,9 @@
hsla(0, 0%, 25%, 0) 50% hsla(0, 0%, 25%, 0) 50%
); );
--text-gradient-yellow: linear-gradient( --text-gradient-yellow: linear-gradient(
to right, to right,
hsl(45, 100%, 72%), var(--primary-color),
hsl(35, 100%, 68%) var(--secondary-color)
); );
--text-gradient-primary: linear-gradient( --text-gradient-primary: linear-gradient(
to right, to right,
@@ -401,10 +401,10 @@ main {
} }
.info_more-btn:hover, .info_more-btn:hover,
.info_more-btn:focus { background: var(--bg-gradient-yellow-1); } .info_more-btn:focus { background: var(--bg-gradient-primary-1); }
.info_more-btn:hover::before, .info_more-btn:hover::before,
.info_more-btn:focus::before { background: var(--bg-gradient-yellow-2); } .info_more-btn:focus::before { background: var(--bg-gradient-primary-2); }
.info_more-btn span { display: none; } .info_more-btn span { display: none; }
@@ -1232,9 +1232,9 @@ textarea.form-input::-webkit-resizer { display: none; }
.form-btn ion-icon { font-size: 16px; } .form-btn ion-icon { font-size: 16px; }
.form-btn:hover { background: var(--bg-gradient-yellow-1); } .form-btn:hover { background: var(--bg-gradient-primary-1); }
.form-btn:hover::before { background: var(--bg-gradient-yellow-2); } .form-btn:hover::before { background: var(--bg-gradient-primary-2); }
.form-btn:disabled { .form-btn:disabled {
opacity: 0.7; opacity: 0.7;

View File

@@ -61,7 +61,7 @@ const selectItems = document.querySelectorAll("[data-select-item]");
const selectValue = document.querySelector("[data-selecct-value]"); const selectValue = document.querySelector("[data-selecct-value]");
const filterBtn = document.querySelectorAll("[data-filter-btn]"); const filterBtn = document.querySelectorAll("[data-filter-btn]");
select.addEventListener("click", function () { elementToggleFunc(this); }); if (select) select.addEventListener("click", function () { elementToggleFunc(this); });
// add event in all select items // add event in all select items
for (let i = 0; i < selectItems.length; i++) { for (let i = 0; i < selectItems.length; i++) {