-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial template from iA, update Info.plist
- Loading branch information
1 parent
54fd6d6
commit b8c6707
Showing
6 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
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,36 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>de</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>ch.lukasneukom.lowbar</string> | ||
<key>CFBundleName</key> | ||
<string>Lowbar</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>0.0.1</string> | ||
<key>CFBundleVersion</key> | ||
<string>0.0.1</string> | ||
<key>IATemplateDocumentFile</key> | ||
<string>document</string> | ||
<key>IATemplateTitleFile</key> | ||
<string>title</string> | ||
<key>IATemplateFooterFile</key> | ||
<string>footer</string> | ||
<key>IATemplateFooterHeight</key> | ||
<integer>90</integer> | ||
<key>IATemplateHeaderFile</key> | ||
<string>header</string> | ||
<key>IATemplateHeaderHeight</key> | ||
<integer>90</integer> | ||
<key>IATemplateDescription</key> | ||
<string>An iA Writer template for aesthetes.</string> | ||
<key>IATemplateAuthor</key> | ||
<string>Lukas Neukom</string> | ||
<key>IATemplateAuthorURL</key> | ||
<string>https://lukasneukom.ch</string> | ||
</dict> | ||
</plist> |
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 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" media="all" href="style.css"> | ||
</head> | ||
<body data-document> </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,10 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" media="all" href="style.css"> | ||
</head> | ||
<body class="footer"> | ||
<p><span data-page-number> </span> / <span data-page-count> </span></p> | ||
</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,10 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" media="all" href="style.css" /> | ||
</head> | ||
<body class="header"> | ||
<p><span data-title> </span> - <span data-date> </span></p> | ||
</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,12 @@ | ||
body { | ||
font-family: Barlow; | ||
font-size: 10pt; | ||
} | ||
|
||
h1 { | ||
font-size: 20pt; | ||
} | ||
|
||
h2 { | ||
font-size: 14pt; | ||
} |
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> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" media="all" href="style.css" /> | ||
</head> | ||
<body class="title"> | ||
<h1 data-title> </h1> | ||
<h2 data-author> </h2> | ||
</body> | ||
</html> |