Skip to content

Commit

Permalink
update style delivering
Browse files Browse the repository at this point in the history
  • Loading branch information
johnroper100 committed Feb 5, 2019
1 parent 309f849 commit 8f04ec0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Simply use the `Latest Version` link above to download `index.php`. Copy it to a

## Resources

Design Mockups - https://www.figma.com/file/S4yjDmgoos5rs3CAsR7Hg5sU/Dropplets-v2.0?node-id=1%3A2
Dependency Hosting - https://www.jsdelivr.com

Color Palette (backend and default theme) - https://yeun.github.io/open-color/

Dependency Hosting - https://rawgit.com/
Previous Design Mockups - https://www.figma.com/file/S4yjDmgoos5rs3CAsR7Hg5sU/Dropplets-v2.0?node-id=1%3A2
20 changes: 10 additions & 10 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
?>
<head>
<title>Dropplets | Setup</title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/setup.css" />
</head>
<body>
<main>
Expand Down Expand Up @@ -163,8 +163,8 @@ function showStyleInput(that) {
if (file_exists("config.php")) { ?>
<head>
<title><?php echo($blogName); ?> | New Post</title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
</head>
<body>
<main>
Expand Down Expand Up @@ -209,8 +209,8 @@ function showStyleInput(that) {
} else if ($URI_parts[0] and $URI_parts[0] == 'version') { ?>
<head>
<title><?php echo($blogName); ?> | Dropplets Version</title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
</head>
<body>
<main>
Expand All @@ -223,8 +223,8 @@ function showStyleInput(that) {
<?php } else if ($URI_parts[0] and $URI_parts[0] == 'update') { ?>
<head>
<title><?php echo($blogName); ?> | Update</title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/setup.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
</head>
<body>
<main>
Expand All @@ -249,7 +249,7 @@ function showStyleInput(that) {
?>
<head>
<title><?php echo($blogName); ?> | <?php echo($postTitle); ?></title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="<?php echo($postStyleSheet); ?>" />
<?php echo($headerInject); ?>
</head>
Expand Down Expand Up @@ -277,7 +277,7 @@ function showStyleInput(that) {
if (file_exists("config.php")) { ?>
<head>
<title><?php echo($blogName); ?> | Home</title>
<link type="text/css" rel="stylesheet" href="https://rawgit.com/johnroper100/dropplets/2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/johnroper100/dropplets@2.0/reset.css" />
<link type="text/css" rel="stylesheet" href="<?php echo($blogStyleSheet); ?>" />
<?php echo($headerInject); ?>
</head>
Expand Down

0 comments on commit 8f04ec0

Please sign in to comment.