Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions extra/custom-head.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{{--


|--------------------------------------------------------------------------
| Custom assets
|--------------------------------------------------------------------------

Custom assets are stored in the 'custom-assets' directory found inside the 'extra' folder.
Custom assets can be any file you would like to use in your theme.
For example: JS, CSS or image files.

You can load these custom assets with a built-in function, 'themeAsset()'.
Add the file you want to add to your 'custom-assets' folder, and include the name with the file extension in the function.

Down below, you can find a few examples using this function:



--}}

<style>
html{
font-size: 100%;
}
body{
font-size: 18px;
line-height: 24px;
font-weight: 400;
color: white;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-image:
url({{themeAsset('../../aurora.jpg')}});
no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
</style>
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Find more themes: https://linkstack.org/themes/

* Theme Name: Aurora
* Theme Version: 1.6
* Theme Version: 1.7
* Theme Date: 2022-07-21
* Theme Author: KiwiSin
* Theme Author URI: https://me.unraid.nz/@kiwi
Expand Down