mirror of
https://github.com/kremalicious/krtmn.git
synced 2024-12-22 09:13:25 +01:00
kick out old styling, start fresh
This commit is contained in:
parent
3e9d10e289
commit
25613db412
59
index.php
59
index.php
@ -1,4 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
// Start YOURLS engine
|
// Start YOURLS engine
|
||||||
require_once( dirname(__FILE__).'/includes/load-yourls.php' );
|
require_once( dirname(__FILE__).'/includes/load-yourls.php' );
|
||||||
|
|
||||||
@ -13,39 +13,38 @@ $items = yourls_api_stats( 'last', 1 );
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
|
||||||
<title>krt.mn</title>
|
<title>krt.mn</title>
|
||||||
<meta name="description" content="personal url shortener of web & ui designer matthias kretschmann">
|
<meta name="description" content="personal url shortener of web & ui designer matthias kretschmann">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<link rel="stylesheet" href="user/css/h5bp.css">
|
<link rel="stylesheet" href="<?php yourls_site_url(); ?>/user/css/h5bp.css">
|
||||||
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
|
<link rel="stylesheet" href="<?php yourls_site_url(); ?>/user/css/krtmn.css">
|
||||||
<link rel="stylesheet" href="user/css/krtmn.css">
|
<link rel="stylesheet" href="<?php yourls_site_url(); ?>/user/css/public.css">
|
||||||
|
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php yourls_site_url(); ?>/apple-touch-icon-114x114-precomposed.png">
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php yourls_site_url(); ?>/apple-touch-icon-72x72-precomposed.png">
|
||||||
<link rel="shortcut icon" href="/apple-touch-icon-precomposed.png">
|
<link rel="shortcut icon" href="<?php yourls_site_url(); ?>/apple-touch-icon-precomposed.png">
|
||||||
<link rel="shortcut icon" href="/favicon.ico">
|
<link rel="shortcut icon" href="<?php yourls_site_url(); ?>/favicon.ico">
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="public">
|
<body id="public">
|
||||||
|
|
||||||
<header>
|
<article class="content">
|
||||||
<h1><i class="icon-bookmark"></i><a href="/admin">krt.mn</a></h1>
|
<header>
|
||||||
</header>
|
<h1><i class="icon-bookmark"></i><a href="<?php yourls_site_url(); ?>/admin">krt.mn</a></h1>
|
||||||
<article role="main">
|
</header>
|
||||||
<?php foreach( $items['links'] as $item ) { ?>
|
<main role="main">
|
||||||
<p>Latest short url: <a href="<?php echo $item['shorturl']; ?>"><?php echo $item['shorturl']; ?> <span class="title"><?php echo $item['title']; ?></span></a></p>
|
<?php foreach( $items['links'] as $item ) { ?>
|
||||||
<?php } ?>
|
<p>Latest short url: <a href="<?php echo $item['shorturl']; ?>"><?php echo $item['shorturl']; ?> <span class="title"><?php echo $item['title']; ?></span></a></p>
|
||||||
|
<?php } ?>
|
||||||
</article>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
|
<p><small>personal url shortener of designer & developer <a href="https://matthiaskretschmann.com">matthias kretschmann</a>. You should follow me on <a href="https://twitter.com/kremalicious">twitter</a>.</small></p>
|
||||||
<p><small>personal url shortener of web & ui designer <a href="http://mkretschmann.com">matthias kretschmann</a>. You should follow me on <a href="http://twitter.com/kremalicious">twitter</a>.</small></p>
|
</footer>
|
||||||
<p><small>icon font <a href="http://fortawesome.github.com/Font-Awesome/">Font Awesome</a></small></p>
|
</article>
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var _gaq=[['_setAccount','UA-1441794-9'],['_trackPageview']];
|
var _gaq=[['_setAccount','UA-1441794-9'],['_trackPageview']];
|
||||||
@ -53,6 +52,6 @@ $items = yourls_api_stats( 'last', 1 );
|
|||||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
File diff suppressed because it is too large
Load Diff
12
user/css/public.css
Normal file
12
user/css/public.css
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
#public {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
max-width: 35em;
|
||||||
|
}
|
@ -28,10 +28,10 @@ function krtmn_change_title( $value, $title ) {
|
|||||||
|
|
||||||
|
|
||||||
// custom css
|
// custom css
|
||||||
yourls_add_action( 'html_head', 'krtmn_css' );
|
yourls_add_action( 'html_head', 'krtmn_assets' );
|
||||||
|
|
||||||
function krtmn_css() {
|
function krtmn_assets() {
|
||||||
echo '<link rel="stylesheet" href="/user/css/krtmn.css" />';
|
echo '<link rel="stylesheet" href="'. YOURLS_SITE .'/user/css/krtmn.css" />';
|
||||||
}
|
}
|
||||||
|
|
||||||
// favicon & touch icons
|
// favicon & touch icons
|
||||||
@ -49,9 +49,9 @@ function krtmn_touch_icons() {
|
|||||||
yourls_add_action( 'html_head', 'krtmn_viewport' );
|
yourls_add_action( 'html_head', 'krtmn_viewport' );
|
||||||
|
|
||||||
function krtmn_viewport() {
|
function krtmn_viewport() {
|
||||||
echo '<meta name="viewport" content="width=device-width">';
|
echo '<meta name="viewport" content="width=device-width, initial-scale=1">';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user