Add base theme files

This commit is contained in:
Bea 2023-01-05 00:02:16 +01:00
commit 0c415542ce
11 changed files with 94 additions and 0 deletions

5
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

8
.idea/modules.xml Normal file
View 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>

View 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
View 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
View File

0
assets/css/screen.css Normal file
View File

26
default.hbs Normal file
View 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>

2
index.hbs Normal file
View File

@ -0,0 +1,2 @@
{{!< default}}

16
package-lock.json generated Normal file
View 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
View 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
}
}

0
post.hbs Normal file
View File