Author
|
Adonay Felipe Nogueira <adfeno@openmailbox.org>
2016-07-22 14:08:31
|
Committer
|
zPlus <-->
2016-09-06 06:12:58
|
Commit
|
02d5d2c
(patch)
|
Tree
|
353cbf3
|
Parent(s)
|
|
Adds licensing syntax, as recognized by GNU LibreJS, to pages that load "./template/vote.twig", that has HTML/JavaScript event handlers.
Tries to solve <https://lists.gnu.org/archive/html/help-librejs/2016-05/msg00000.html>.
commits diff:
470cc9e..02d5d2c
2 files changed,
43 insertions,
1 deletion
—
download
Diffstat
Diff options
+21/-0
M template/index.twig
1
|
1
|
|
{% include 'header.twig' %}
|
2
|
2
|
|
|
|
3
|
+ |
<script>
|
|
4
|
+ |
/*
|
|
5
|
+ |
This is the code powering <http://freepo.st>.
|
|
6
|
+ |
Copyright © 2014-2016 zPlus
|
|
7
|
+ |
Copyright © 2016 Adonay "adfeno" Felipe Nogueira <adfeno@openmailbox.org> <https://libreplanet.org/wiki/User:Adfeno>
|
|
8
|
+ |
|
|
9
|
+ |
This program is free software: you can redistribute it and/or modify
|
|
10
|
+ |
it under the terms of the GNU Affero General Public License as published by
|
|
11
|
+ |
the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+ |
(at your option) any later version.
|
|
13
|
+ |
|
|
14
|
+ |
This program is distributed in the hope that it will be useful,
|
|
15
|
+ |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+ |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+ |
GNU Affero General Public License for more details.
|
|
18
|
+ |
|
|
19
|
+ |
You should have received a copy of the GNU Affero General Public License
|
|
20
|
+ |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+ |
*/
|
|
22
|
+ |
</script>
|
|
23
|
+ |
|
3
|
24
|
|
<div class="posts">
|
4
|
25
|
|
|
5
|
26
|
|
{# banner
|
+22/-1
M template/post.twig
1
|
1
|
|
{% include 'header.twig' %}
|
2
|
2
|
|
|
|
3
|
+ |
<script>
|
|
4
|
+ |
/*
|
|
5
|
+ |
This is the code powering <http://freepo.st>.
|
|
6
|
+ |
Copyright © 2014-2016 zPlus
|
|
7
|
+ |
Copyright © 2016 Adonay "adfeno" Felipe Nogueira <adfeno@openmailbox.org> <https://libreplanet.org/wiki/User:Adfeno>
|
|
8
|
+ |
|
|
9
|
+ |
This program is free software: you can redistribute it and/or modify
|
|
10
|
+ |
it under the terms of the GNU Affero General Public License as published by
|
|
11
|
+ |
the Free Software Foundation, either version 3 of the License, or
|
|
12
|
+ |
(at your option) any later version.
|
|
13
|
+ |
|
|
14
|
+ |
This program is distributed in the hope that it will be useful,
|
|
15
|
+ |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16
|
+ |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17
|
+ |
GNU Affero General Public License for more details.
|
|
18
|
+ |
|
|
19
|
+ |
You should have received a copy of the GNU Affero General Public License
|
|
20
|
+ |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
21
|
+ |
*/
|
|
22
|
+ |
</script>
|
|
23
|
+ |
|
3
|
24
|
|
<div class="post">
|
4
|
25
|
|
|
5
|
26
|
|
<div class="title">
|
56
|
77
|
|
</div>
|
57
|
78
|
|
</div>
|
58
|
79
|
|
|
59
|
|
- |
{% include 'footer.twig' %} |
59
|
|
> |
\ No newline at end of file
|
|
80
|
+ |
{% include 'footer.twig' %}
|