Add base theme files
This commit is contained in:
commit
0c415542ce
5
.idea/.gitignore
vendored
Normal file
5
.idea/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/simple-purple-ghost-theme.iml" filepath="$PROJECT_DIR$/.idea/simple-purple-ghost-theme.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
12
.idea/simple-purple-ghost-theme.iml
Normal file
12
.idea/simple-purple-ghost-theme.iml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
0
assets/css/fonts.css
Normal file
0
assets/css/fonts.css
Normal file
0
assets/css/screen.css
Normal file
0
assets/css/screen.css
Normal file
26
default.hbs
Normal file
26
default.hbs
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{@site.locale}}">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>{{@site.title}}</title>
|
||||
|
||||
{{ghost_head}}
|
||||
{{!-- Outputs important meta data and settings, should always be in <head> --}}
|
||||
</head>
|
||||
|
||||
|
||||
<body class="{{body_class}}" onload="openPolicyPopup()">
|
||||
|
||||
|
||||
{{{body}}}
|
||||
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
|
||||
|
||||
{{!-- <footer> --}}
|
||||
{{ghost_foot}}
|
||||
{{!-- Outputs important scripts - should always be included before closing body tag --}}
|
||||
</body>
|
||||
</html>
|
16
package-lock.json
generated
Normal file
16
package-lock.json
generated
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "simple-purple",
|
||||
"version": "0.0.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "simple-purple",
|
||||
"version": "0.0.1",
|
||||
"license": "Copyright",
|
||||
"engines": {
|
||||
"ghost": ">=5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
19
package.json
Normal file
19
package.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "simple-purple",
|
||||
"description": "A simple Purple theme for Ghost",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"ghost": ">=5.0.0"
|
||||
},
|
||||
"license": "Copyright",
|
||||
"author": {
|
||||
"name": "AstroBea",
|
||||
"email": "hello@beatrice.wtf",
|
||||
"url": "https://beatrice.wtf/"
|
||||
},
|
||||
"config": {
|
||||
"posts_per_page": 10,
|
||||
"image_sizes": {},
|
||||
"card_assets": true
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user