Display whatever domain the site is being accessed from
This commit is contained in:
parent
56db90d3a3
commit
8635a5ba26
2 changed files with 3 additions and 3 deletions
|
@ -17,8 +17,8 @@
|
||||||
{!! (intval(date('n')) == 12) ? '<script src="/js/christmas/snow.js"></script>' : '' !!}
|
{!! (intval(date('n')) == 12) ? '<script src="/js/christmas/snow.js"></script>' : '' !!}
|
||||||
|
|
||||||
<!-- Page-specific -->
|
<!-- Page-specific -->
|
||||||
<title>{{ $title ?? 'Unknown' }} - diskfloppy.me</title>
|
<title>{{ $title ?? 'Unknown' }} - {{ str_replace("www.", "", Request::getHost()) }}</title>
|
||||||
<meta property="og:title" content="diskfloppy.me | {{ $title }}">
|
<meta property="og:title" content="{{ str_replace("www.", "", Request::getHost()) }} | {{ $title }}">
|
||||||
<meta property="og:image" content="/favicon-128x128.png">
|
<meta property="og:image" content="/favicon-128x128.png">
|
||||||
</head>
|
</head>
|
||||||
<body onload="setSchemeSelector()">
|
<body onload="setSchemeSelector()">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<nav>
|
<nav>
|
||||||
<h1>diskfloppy.me | <strong>{{ $title }}</strong></h1>
|
<h1>{{ str_replace("www.", "", Request::getHost()) }} | <strong>{{ $title }}</strong></h1>
|
||||||
<div class="nav-wrapper">
|
<div class="nav-wrapper">
|
||||||
<div>
|
<div>
|
||||||
<a href="/" title="Home"><img class="pixel" src="/images/icons/nav/home2.png" alt="Home" width="32" height="32"></a>
|
<a href="/" title="Home"><img class="pixel" src="/images/icons/nav/home2.png" alt="Home" width="32" height="32"></a>
|
||||||
|
|
Loading…
Reference in a new issue