mirror of
https://github.com/Dannecron/littlelink.git
synced 2025-12-26 00:22:35 +03:00
Merge remote-tracking branch 'littlelink/main' into main
# Conflicts: # index.html # privacy.html
This commit is contained in:
185
index.html
185
index.html
@@ -1,218 +1,165 @@
|
||||
<!--
|
||||
|
||||
Version 2.5.0
|
||||
|
||||
This is to help you track what version of LittleLink you forked.
|
||||
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<!--
|
||||
To change the theme, change the class on the html tag below to one of:
|
||||
- theme-auto: Automatically switches based on user's system preferences
|
||||
- theme-light: Forces light theme
|
||||
- theme-dark: Forces dark theme
|
||||
-->
|
||||
|
||||
<html class="theme-auto" lang="en"> <!-- Update`class="theme-auto" with your preference -->
|
||||
|
||||
<head>
|
||||
|
||||
<!-- Page Information
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta charset="utf-8">
|
||||
<title>Dannecron LittleLink</title>
|
||||
<meta name="description" content="https://littlelink.io">
|
||||
<meta name="author" content="Seth Cottle">
|
||||
|
||||
<!-- Mobile Specific Metas
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Page Title - Change this to your name/brand (50-60 characters recommended) -->
|
||||
<title>LittleLink</title>
|
||||
<link rel="icon" type="image/x-icon" href="/images/avatar.png"> <!-- Update this with your own favicon -->
|
||||
|
||||
<!-- CSS
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<!-- Meta Description - Write a description (150-160 characters recommended) -->
|
||||
<meta name="description" content="dannecron's littlelink">
|
||||
|
||||
<!-- Themes:
|
||||
Auto: css/skeleton-auto.css
|
||||
Light: css/skeleton-light.css
|
||||
Dark: css/skeleton-dark.css
|
||||
-->
|
||||
<link rel="stylesheet" href="css/skeleton-auto.css">
|
||||
<!-- Keywords -->
|
||||
<meta name="keywords" content="dannecron, backend developer, gamer, anime otaku">
|
||||
|
||||
<!-- Brand Styles -->
|
||||
<link rel="stylesheet" href="css/brands.css">
|
||||
<link rel="stylesheet" href="css/brands-extended.css">
|
||||
<!-- Canonical URL - Helps prevent duplicate content issues -->
|
||||
<meta rel="canonical" href="https://dannecron.ru">
|
||||
|
||||
<!-- Author Information -->
|
||||
<meta name="author" content="dannecron">
|
||||
|
||||
<!-- Favicon
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<link rel="icon" type="image/png" href="images/littlelink.png">
|
||||
<!-- Stylesheets -->
|
||||
<link rel="stylesheet" href="css/reset.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/brands.css">
|
||||
|
||||
<!-- LittleLink Extended Stylesheet (Optional) -->
|
||||
<!-- <link rel="stylesheet" href="css/brands-extended.css"> -->
|
||||
<!-- Learn more at https://github.com/sethcottle/littlelink-extended.
|
||||
Remove comments if you've added LittleLink Extended dependencies -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Primary Page Layout
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="column" style="margin-top: 10%">
|
||||
<div class="container">
|
||||
<div class="column">
|
||||
|
||||
<!--
|
||||
<!--
|
||||
By default, the Avatar is rounded. Use the following:
|
||||
- avatar--rounded: Automatically rounds the image
|
||||
- avatar--soft: Slightly rounds the image
|
||||
- avatar--none: Removes any rounding
|
||||
|
||||
## Getting Started with LittleLink
|
||||
Be sure to replace the src with your own image path and update the alt text
|
||||
-->
|
||||
<img class="avatar avatar--rounded" src="images/yui.png" srcset="images/yui.png 2x" alt="LittleLink">
|
||||
|
||||
This page has been built with every pre-designed button available in LittleLink by default. You can rearrange and delete as needed.
|
||||
<!-- Replace with your name or brand -->
|
||||
<h1>
|
||||
<div>Denis Savosin</div>
|
||||
</h1>
|
||||
|
||||
You can add your own brand or others brands you may need in the `css/brands.css` file.
|
||||
<!-- Add a short description about yourself or your brand -->
|
||||
<p>Very lazy backend developer.</p>
|
||||
|
||||
You can add custom icons to `images/icons/...`. It is recommended to use a 24x24 .SVG.
|
||||
|
||||
Edit the "Your Image Here" section to add your own personal branding, like a picture of yourself or your brand logo!
|
||||
|
||||
Edit the "Title" section to change the page heading. You can use something like your name, your social handle, or your brand name.
|
||||
|
||||
Edit the "Short Bio" section tell users about yourself or your brand.
|
||||
|
||||
-->
|
||||
|
||||
<!-- Your Image Here -->
|
||||
<img src="images/yui.png" class="avatar" alt="">
|
||||
|
||||
<!-- Title -->
|
||||
<h1 role="heading">Denis Savosin</h1>
|
||||
|
||||
<!-- Short Bio -->
|
||||
<p>Vary lazy backend developer</p>
|
||||
|
||||
<!--
|
||||
|
||||
## Breaking down <a> attributes:
|
||||
|
||||
1.) class="button button-default" | The first "button" here is telling this <a> tag that it should make this element a button and applies the default styling in `css/brands.css`.
|
||||
The second portion, button-default, is declaring the specific brand style you would like to apply. Here we're applying the "default" style and color.
|
||||
If you want to make this button to use the brand colors for Discord, just change "button-default" to "button-discord". Brands are found in `css/brands.css`. You can always edit & add your own there.
|
||||
|
||||
2.) Replace the # in href="#" with the desired target URL for the button.
|
||||
|
||||
3.) target="_blank" | This attribute opens links in a new tab. Remove this attribute to prevent links from opening in a new tab.
|
||||
|
||||
4.) rel="noopener" | This attribute instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it.
|
||||
This is especially useful when opening untrusted links. https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/noopener
|
||||
|
||||
5.) role="button" | The button role identifies an element as a button to assistive technology such as screen readers.
|
||||
|
||||
## Breaking down the <img> attributes:
|
||||
|
||||
1.) class="icon" | This class is telling the <img> tag that it should use the styling for icons found in `css/brands.css`.
|
||||
|
||||
2.) src="images/icons/[icon-name].svg" | This defines the icon you would like to display from the 'images/icons/' folder. For example, you can change this to src="images/icons/discord.svg" to use the Discord icon.
|
||||
Add your own 24x24 icons to the "icons" folder to reference them. We recommend providing a SVG.
|
||||
|
||||
3.) alt="" | Since the text at the end of the snippet, "..>[Button Text]</a><br>", explains what the button is, we use "alt=""" to nullify the icon annoucement from the accessibility tree.
|
||||
This can improve the experience for assistive technology users by hiding what is essentially duplicated
|
||||
|
||||
-->
|
||||
<!-- All your buttons go here -->
|
||||
<div class="button-stack" role="navigation">
|
||||
|
||||
<!-- Generic Blog -->
|
||||
<a class="button button-default" href="https://dannecron.github.io/" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/generic-blog.svg" alt="">
|
||||
<img class="icon" src="images/icons/generic-blog.svg" alt="blog" aria-hidden="true">
|
||||
Read my blog
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- MyAnimeList -->
|
||||
<a class="button button-myanimelist" href="https://myanimelist.net/profile/DanNC" target="_blank" rel="noopener">
|
||||
<img class="icon" src="images/icons-extended/myanimelist.svg" alt="MyAnimeList Logo">
|
||||
<img class="icon" src="images/icons-extended/myanimelist.svg" alt="myanimelist" aria-hidden="true">
|
||||
MyAnimeList
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- Steam -->
|
||||
<a class="button button-steam" href="https://steamcommunity.com/id/dannc" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/steam.svg" alt="">
|
||||
<img class="icon" src="images/icons/steam.svg" alt="steam" aria-hidden="true">
|
||||
Steam
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- GitHub -->
|
||||
<a class="button button-github" href="https://github.com/dannecron" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/github.svg" alt="">
|
||||
<img class="icon" src="images/icons/github.svg" alt="github" aria-hidden="true">
|
||||
GitHub
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- Last.fm -->
|
||||
<a class="button button-last-fm" href="https://www.last.fm/ru/user/DanNecron" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/last-fm.svg" alt="">
|
||||
<img class="icon" src="images/icons/last-fm.svg" alt="lastfm" aria-hidden="true">
|
||||
Last.fm
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- Spotify -->
|
||||
<a class="button button-spotify" href="https://open.spotify.com/user/dannecron" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/spotify.svg" alt="">
|
||||
<img class="icon" src="images/icons/spotify.svg" alt="spotify" aria-hidden="true">
|
||||
Spotify
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- LiveLib -->
|
||||
<a class="button button-bluesky" href="https://www.livelib.ru/reader/DanNC" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons-extended/livelib.svg" alt="">
|
||||
<img class="icon" src="images/icons-extended/livelib.svg" alt="livelib" aria-hidden="true">
|
||||
LiveLib
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- PlayStation Network -->
|
||||
<!-- PSN profiles Network -->
|
||||
<a class="button button-default" href="https://psnprofiles.com/DanNecron" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons-extended/playstation.svg" alt="">
|
||||
<img class="icon" src="images/icons-extended/playstation.svg" alt="psnprofiles" aria-hidden="true" />
|
||||
PSN-profile
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- RetroAchievements -->
|
||||
<a class="button button-coffee" href="https://retroachievements.org/user/dannc" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons-custom/ra-logo-square.svg" alt="" />
|
||||
<img class="icon" src="images/icons-custom/ra-logo-square.svg" alt="retroachievements" aria-hidden="true" />
|
||||
RetroAchievements.org
|
||||
</a>
|
||||
<br />
|
||||
|
||||
<!-- Instagram -->
|
||||
<a class="button button-instagram" href="https://instagram.com/dannecron?igshid=NGVhN2U2NjQ0Yg==" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/instagram.svg" alt="">
|
||||
<img class="icon" src="images/icons/instagram.svg" alt="instagram" aria-hidden="true" />
|
||||
Instagram
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- X -->
|
||||
<a class="button button-x" href="https://twitter.com/dannecron" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/x.svg" alt="">
|
||||
<img class="icon" src="images/icons/x.svg" alt="x-twitter" aria-hidden="true" />
|
||||
Follow on X
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<!-- LinkedIn -->
|
||||
<a class="button button-linked" href="https://www.linkedin.com/in/denis-savosin-6412311a5/" target="_blank" rel="noopener" role="button">
|
||||
<img class="icon" src="images/icons/linkedin.svg" alt="">
|
||||
<img class="icon" src="images/icons/linkedin.svg" alt="linkedin" aria-hidden="true" />
|
||||
LinkedIn
|
||||
</a>
|
||||
<br>
|
||||
|
||||
<br>
|
||||
<!--
|
||||
Footer:
|
||||
This includes a link to privacy.html page which can be setup for your Privacy Policy.
|
||||
This also includes a link to the LittleLink repository to make forking LittleLink easier.
|
||||
You can edit or remove anything here to make your own footer.
|
||||
-->
|
||||
<p style="font-size: 10px; color: rgba(42, 42, 42, 0.76);">
|
||||
Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener" role="button">LittleLink</a>.
|
||||
Some icons by <a href="https://icons8.com" target="_blank" rel="noopener" role="button">icons8.com</a>.
|
||||
</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Feel free to add your own footer information, including updating `privacy.html` to reflect how your LittleLink fork is set up -->
|
||||
<footer>
|
||||
Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>.
|
||||
Some icons are provided by <a href="https://icons8.com" target="_blank" rel="noopener" role="button">icons8.com</a>.
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- End Document
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user