mirror of
https://github.com/djkotowski/personal-website.git
synced 2026-09-12 05:20:40 -05:00
Add resumé link to experience section (#236)
* Switch Dependabot checks from daily to weekly Reduces PR noise by checking for npm and github-actions updates weekly instead of daily. Co-Authored-By: Claude Sonnet 5 <[email protected]> * Add resumé link to experience section Point visitors to a full resumé for more detail, and add rel support to Link so external references can opt out of link equity. --------- Co-authored-by: Claude Sonnet 5 <[email protected]>
This commit is contained in:
@@ -103,4 +103,8 @@
|
||||
<p>C#, ASP.NET MVC 3, Microsoft SQL Server, jQuery, Manhattan SCALE</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p class="text-center pt-10">
|
||||
Please see my <Link href="https://drive.proton.me/urls/2AY1WCCC54#BcxvDzVu1IM8" target="_blank" rel="nofollow">resumé</Link> for more details.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import type { HTMLAnchorAttributes } from 'svelte/elements'
|
||||
type LinkProps = { children: any, href: string; target: HTMLAnchorAttributes['target']; title?: HTMLAnchorAttributes['title'] }
|
||||
type LinkProps = { children: any, href: string; target: HTMLAnchorAttributes['target']; title?: HTMLAnchorAttributes['title']; rel?: HTMLAnchorAttributes['rel'] }
|
||||
|
||||
let { children, href, target, title }: LinkProps = $props()
|
||||
let { children, href, target, title, rel }: LinkProps = $props()
|
||||
</script>
|
||||
|
||||
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title}>{@render children?.()}</a>
|
||||
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title} {rel}>{@render children?.()}</a>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user