Skip to content

Commit 0cf7a4e

Browse files
committed
Added manifest to online template.
Created custom template for building the online version
1 parent a696036 commit 0cf7a4e

File tree

4 files changed

+64
-9
lines changed

4 files changed

+64
-9
lines changed

wiki/tiddlers/About.tid

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: About
22
tags: even About
33
home-order: 0
44

5-
NoteSelf has been created and it's developed by
5+
NoteSelf has been created and it's developed by
66
[ext[Danielo Rodríguez Rivero|https://es.linkedin.com/in/danielorodriguez]], a single JavaScript developer.
77

88

99
I only do this because my own interest about having something like this.
10-
I have been looking for a similar solution for years, and
10+
I have been looking for a similar solution for years, and
1111
I didn't found anything, so I decided to create one myself.
1212

1313

14-
NoteSelf stands on the shoulders of two giants that made this project possible:
15-
[ext[TiddlyWiki|http://www.tiddliwiki.com]] and [ext[PouchDb|https://www.pouchdb.com]].
16-
If you don't know any of those projects, please visit their home pages,
14+
NoteSelf stands on the shoulders of two giants that made this project possible:
15+
[ext[TiddlyWiki|http://www.tiddliwiki.com]] and [ext[PouchDb|https://pouchdb.com]].
16+
If you don't know any of those projects, please visit their home pages,
1717
they deserve your attention.
1818

1919

@@ -24,5 +24,5 @@ Yes exactly! Customization.
2424

2525

2626
TiddlyPouch fills that gap, bringing to TiddlyWiki a sync mechanism that allows you to
27-
work offline and sync wen you come back online. Create your own, free and open sourced
27+
work offline and sync when you come back online. Create your own, free and open sourced
2828
note taking tool! With sync.

wiki/tiddlers/attributions.tid

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ home-order: 1
44

55
Here is the list of attributions that made this project possible
66

7-
* TiddPouch runs on top of [[tiddlywiki|http://www.tiddlywiki.com]], created by the great Jeremy Ruston
8-
* Local storage and synchronization are possible thanks to [[PouchDB|https://www.pouchdb.com]]
7+
* TiddlyPouch runs on top of [[tiddlywiki|http://www.tiddlywiki.com]], created by the great Jeremy Ruston
8+
* Local storage and synchronization are possible thanks to [[PouchDB|https://pouchdb.com]]
99
* Some Icons were made by <a href="http://www.flaticon.com/authors/madebyoliver" title="Madebyoliver">Madebyoliver</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>

wiki/tiddlers/system/build_filters/save_online.tid

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ title: $:/NoteSelf/save/online
66
\define savingEmpty()
77
yes
88
\end
9-
{{$:/core/templates/tiddlywiki5.html}}
9+
{{$:/NoteSelf/templates/online.html}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
title: $:/NoteSelf/templates/online.html
2+
3+
\rules only filteredtranscludeinline transcludeinline
4+
<!doctype html>
5+
{{$:/core/templates/MOTW.html}}<html>
6+
<head>
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Force IE standards mode for Intranet and HTA - should be the first meta -->
8+
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
9+
10+
<link rel="manifest" href="manifest.json" />
11+
12+
<meta name="application-name" content="NoteSelf" />
13+
<meta name="generator" content="NoteSelf" />
14+
<meta name="tiddlywiki-version" content="{{$:/core/templates/version}}" />
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
16+
<meta name="mobile-web-app-capable" content="yes" />
17+
<meta name="apple-mobile-web-app-capable" content="yes" />
18+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
19+
<meta name="format-detection" content="telephone=no" />
20+
<meta name="copyright" content="{{$:/core/copyright.txt}}" />
21+
<link id="faviconLink" rel="shortcut icon" href="favicon.ico">
22+
<title>{{$:/core/wiki/title}}</title>
23+
<!--~~ This is a Tiddlywiki file. The points of interest in the file are marked with this pattern ~~-->
24+
25+
<!--~~ Raw markup ~~-->
26+
{{{ [all[shadows+tiddlers]tag[$:/core/wiki/rawmarkup]] [all[shadows+tiddlers]tag[$:/tags/RawMarkup]] ||$:/core/templates/plain-text-tiddler}}}
27+
{{{[all[tiddlers]field:plugin-type[plugin]]||$:/core/templates/head-area-tiddlers}}}
28+
</head>
29+
<body class="tc-body">
30+
<!--~~ Static styles ~~-->
31+
<div id="styleArea">
32+
{{$:/boot/boot.css||$:/core/templates/css-tiddler}}
33+
</div>
34+
<!--~~ Static content for Google and browsers without JavaScript ~~-->
35+
<noscript>
36+
<div id="splashArea">
37+
{{$:/core/templates/static.area}}
38+
</div>
39+
</noscript>
40+
<!--~~ Ordinary tiddlers ~~-->
41+
{{$:/core/templates/store.area.template.html}}
42+
<!--~~ Library modules ~~-->
43+
<div id="libraryModules" style="display:none;">
44+
{{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/javascript-tiddler}}}
45+
</div>
46+
<!--~~ Boot kernel prologue ~~-->
47+
<div id="bootKernelPrefix" style="display:none;">
48+
{{ $:/boot/bootprefix.js ||$:/core/templates/javascript-tiddler}}
49+
</div>
50+
<!--~~ Boot kernel ~~-->
51+
<div id="bootKernel" style="display:none;">
52+
{{ $:/boot/boot.js ||$:/core/templates/javascript-tiddler}}
53+
</div>
54+
</body>
55+
</html>

0 commit comments

Comments
 (0)