-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
855bddf
commit 34cfea4
Showing
12 changed files
with
142 additions
and
6 deletions.
There are no files selected for viewing
Submodule lava
updated
28 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# settings.yaml contains the setting definitions in a nice human-readable format | ||
# | ||
|
||
logo: | ||
type: image | ||
default: /images/logo.png | ||
get_url: true # this automatically changes the default value into an absolute url |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@import "../../lava/assets/less/mixins.less"; | ||
|
||
body { | ||
background: #fefefe; | ||
} | ||
|
||
#logo{ | ||
background-repeat: no-repeat; | ||
background-position: bottom center; | ||
min-height: 100px; | ||
max-height: 500px; | ||
|
||
img { | ||
margin-left: -1000px; | ||
opacity: 0; | ||
z-index: -1; | ||
} | ||
} | ||
|
||
#login_form_cntr { | ||
margin-left: auto; | ||
margin-right: auto; | ||
background: white; | ||
border: 1px solid #BEBEBE; | ||
width: 300px; | ||
padding: 20px; | ||
|
||
.box-shadow(0 1px 3px rgba(0, 0, 0, 0.2) ); | ||
.border-radius( 3px ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>{{ get_bloginfo( 'name' ) }} | Login</title> | ||
{{ head() }} | ||
{{ styles() }} | ||
<style type="text/css"> | ||
#logo { | ||
background-image:url({{ logo }}); | ||
} | ||
</style> | ||
{{ scripts() }} | ||
</head> | ||
<body class="" > | ||
<div id="logo"> | ||
{# The logo is actually displayed using the background-image but this is used to make sure the height is correct #} | ||
<img src="{{ logo }}" /> | ||
</div> | ||
<div id="login_form_cntr"> | ||
<form id="login_form" method="post"> | ||
{{ widget( 'form' ) }} | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This file outlines the guidelines that all skins should follow to ensure compatibility with extensions. | ||
|
||
The login form should have the id login_form |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{{ watermark }} | ||
<meta charset="utf-8" /> | ||
<title>{{ environment.blog_name }} | Login</title> | ||
<link rel="stylesheet" type="text/css" href="{{ environment.static_url }}/styles.css" /> | ||
</head> | ||
<body class="{{ body_class }}" > | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters