mirror of
https://github.com/itme-brain/itme-brain.github.io.git
synced 2026-03-23 12:09:44 -04:00
updated
This commit is contained in:
parent
9576fe3e3f
commit
f214ff3ada
20 changed files with 132 additions and 182 deletions
4
_includes/footer.html
Normal file
4
_includes/footer.html
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<footer>
|
||||
<a href="https://git.ramos.codes" title="Forgejo"><i class="fa-solid fa-code-branch"></i></a>
|
||||
<a href="{{ '/feed.xml' | relative_url }}" title="RSS Feed"><i class="fa-solid fa-rss"></i></a>
|
||||
</footer>
|
||||
|
|
@ -2,6 +2,26 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }} | {{ site.description }}{% endif %}</title>
|
||||
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||
<meta name="author" content="{{ site.title }}">
|
||||
<link rel="canonical" href="{{ page.url | absolute_url }}">
|
||||
<meta name="theme-color" content="#171e26">
|
||||
|
||||
<!-- Open Graph / LinkedIn / Facebook -->
|
||||
<meta property="og:type" content="{% if page.layout == 'post' %}article{% else %}website{% endif %}">
|
||||
<meta property="og:site_name" content="{{ site.title }}">
|
||||
<meta property="og:url" content="{{ page.url | absolute_url }}">
|
||||
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||
<meta property="og:image" content="{{ '/assets/headshot.jpeg' | absolute_url }}">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||
<meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||
<meta name="twitter:image" content="{{ '/assets/headshot.jpeg' | absolute_url }}">
|
||||
|
||||
<!-- Theme script: runs before CSS to prevent flash of wrong theme -->
|
||||
<script>
|
||||
(function() {
|
||||
|
|
|
|||
|
|
@ -20,15 +20,14 @@
|
|||
<i class="fa-solid fa-sun icon-sun"></i>
|
||||
</button>
|
||||
|
||||
<img src="{{ '/assets/pfp.gif' | relative_url }}" alt="Bryan Ramos" class="pfp">
|
||||
<img src="{{ '/assets/headshot.jpeg' | relative_url }}" alt="Bryan Ramos" class="pfp">
|
||||
<h1>Bryan Ramos</h1>
|
||||
<p class="header-tagline">Developer & Technologist</p>
|
||||
<p class="header-tagline">Software & Systems Engineer</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="mailto:bryan@ramos.codes" aria-label="Email"><i class="fa-solid fa-envelope"></i></a></li>
|
||||
<li><a href="https://github.com/itme-brain" aria-label="GitHub"><i class="fa-brands fa-github"></i></a></li>
|
||||
<li><a href="{{ '/pgpkey' | relative_url }}" aria-label="PGP Key"><i class="fa-sharp fa-solid fa-key"></i></a></li>
|
||||
<li><a href="https://www.linkedin.com/in/bryan-ramos-ab467228a/" aria-label="LinkedIn"><i class="fa-brands fa-linkedin-in"></i></a></li>
|
||||
<li><a href="{{ '/blog' | relative_url }}" aria-label="Blog"><i class="fa-solid fa-blog"></i></a></li>
|
||||
<ul class="nav-links">
|
||||
<li><a href="mailto:bryan@ramos.codes"><i class="fa-solid fa-envelope"></i><span>Email</span></a></li>
|
||||
<li><a href="https://github.com/itme-brain"><i class="fa-brands fa-github"></i><span>GitHub</span></a></li>
|
||||
<li><a href="https://www.linkedin.com/in/bryan-ramos-ab467228a/"><i class="fa-brands fa-linkedin-in"></i><span>LinkedIn</span></a></li>
|
||||
<li><a href="{{ '/blog' | relative_url }}"><i class="fa-solid fa-pen-nib"></i><span>Blog</span></a></li>
|
||||
</ul>
|
||||
</header>
|
||||
Loading…
Add table
Add a link
Reference in a new issue