Skip to content

Commit

Permalink
Update to Azuriom v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMicky-FR committed Aug 15, 2023
1 parent a84baac commit 839169e
Show file tree
Hide file tree
Showing 15 changed files with 68 additions and 353 deletions.
318 changes: 32 additions & 286 deletions assets/css/style.css

Large diffs are not rendered by default.

9 changes: 0 additions & 9 deletions assets/img/content_bottom_shape.svg

This file was deleted.

9 changes: 0 additions & 9 deletions assets/img/content_top_shape.svg

This file was deleted.

9 changes: 0 additions & 9 deletions assets/img/footer_shape.svg

This file was deleted.

9 changes: 0 additions & 9 deletions assets/img/header_shape.svg

This file was deleted.

9 changes: 0 additions & 9 deletions assets/img/navigation_background.svg

This file was deleted.

3 changes: 3 additions & 0 deletions assets/svg/footer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/svg/header.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/svg/navbar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/svg/page_container_after.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/svg/page_container_before.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"id": "lime",
"name": "Lime",
"description": "Lime is a modern light theme for Azuriom",
"version": "1.1.2",
"version": "1.2.0",
"url": "https://market.azuriom.com/resources/29",
"authors": [
"Captain34",
"MrMicky"
"MrMicky",
"Captain34"
],
"azuriom_api": "1.0.0",
"azuriom_api": "1.1.0",
"apiId": 29
}
4 changes: 2 additions & 2 deletions views/elements/navbar.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<nav class="navbar navbar-expand-md navbar-dark text-uppercase">
<nav class="navbar navbar-expand-md z-3">
<div class="container">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="{{ trans('messages.nav.toggle') }}">
<span class="navbar-toggler-icon"></span>
Expand Down Expand Up @@ -40,7 +40,7 @@
{{ trans('auth.register') }}
</a>
@endif
<a class="btn btn-secondary mx-1 my-2" href="{{ route('login') }}">
<a class="btn btn-primary mx-1 my-2" href="{{ route('login') }}">
{{ trans('auth.login') }}
</a>
@else
Expand Down
10 changes: 5 additions & 5 deletions views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<header class="header" style="background: url('{{ setting('background') ? image_url(setting('background')) : 'https://via.placeholder.com/2000x500' }}') center / cover no-repeat">
@include('elements.navbar')

<div class="container top-header text-center">
<h2>{{ site_name() }}</h2>
<div class="container header-title position-relative z-2 py-5 text-center">
<h2 class="text-primary">{{ site_name() }}</h2>
@if(theme_config('subtitle'))
<p>{{ theme_config('subtitle') }}</p>
<p class="text-light">{{ theme_config('subtitle') }}</p>
@endif
</div>
</header>

<main class="container content">
@include('elements.session-alerts')

<div class="page-container">
<div class="page-container-inner px-1 px-md-3 py-3">
<div class="page-container position-relative">
<div class="bg-body-tertiary px-1 px-md-3 py-3">
@yield('content')
</div>
</div>
Expand Down
21 changes: 10 additions & 11 deletions views/layouts/base.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="@yield('description', setting('description', ''))">
<meta name="theme-color" content="#3490DC">
<meta name="theme-color" content="#78ffc5">
<meta name="author" content="Azuriom">

<meta property="og:title" content="@yield('title')">
Expand Down Expand Up @@ -37,21 +37,23 @@

<!-- Styles -->
<link href="{{ asset('vendor/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('css/base.css') }}" rel="stylesheet">
<link href="{{ theme_asset('css/style.css') }}" rel="stylesheet">
@stack('styles')
@include('elements.theme-color', ['color' => '#78ffc5'])
</head>

<body>
<body data-bs-theme="dark">
<div id="app" @if(Route::is('home')) class="lime-home" @endif>
@yield('app')
</div>

<footer class="footer">
<div class="top-footer">
<div class="top-footer position-relative bg-body-secondary py-5">
<div class="container">
<div class="row gy-3">
<div class="col-md-4 about">
<h3>{{ site_name() }}</h3>
<h3 class="text-center">{{ site_name() }}</h3>
<p>{{ theme_config('footer_description') }}</p>
</div>
<div class="col-md-4 list-inline text-center social-links pt-3">
Expand All @@ -62,7 +64,9 @@
@endforeach
</div>
<div class="col-md-4 links">
<h3>{{ trans('theme::theme.footer_links_title') }}</h3>
<h3 class="text-center">
{{ trans('theme::theme.footer_links_title') }}
</h3>

<ul class="list-unstyled text-center">
@foreach(theme_config('footer_links') ?? [] as $link)
Expand All @@ -76,15 +80,10 @@
</div>
</div>

<div class="copyright">
<div class="copyright bg-body-tertiary py-3">
<div class="container text-center">
<p class="mb-1">{{ setting('copyright') }}</p>
<p class="small mb-0">
Designed with <i style="color: orangered;" class="bi bi-heart"></i> by
<a href="https://twitter.com/Captain34_dev" target="_blank">
Captain34
</a>
-
@lang('messages.copyright')
</p>
</div>
Expand Down

0 comments on commit 839169e

Please sign in to comment.