-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refs #1654: First version of new standard skin
- Work in progress. - We need some template language for skins. Currently we have to modify PHP codes to change HTML markups, but if we have a template engine, the modification can be confined within HTML only. Example: <li [##_no_more_prev_##]><a ... dress('no_more_prev', isset($paging['prev']) ? '' : 'class="disabled"', $view, $useSkinCache); can be rewritten as (following Jinja's syntax): <li{% if no_more_prev %} class="disabled"{% endif %}><a ...
- Loading branch information
Showing
15 changed files
with
1,116 additions
and
6 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<skin version="2.0"> | ||
<information> | ||
<name>Lucid</name> | ||
<version>1.0</version> | ||
<description> | ||
<![CDATA[Persona for Textcube 2.0. Valids HTML5. Based on Bootstrap & designed for mobility-first.]]> | ||
</description> | ||
<license> | ||
<![CDATA[GNU GPLv3]]> | ||
</license> | ||
</information> | ||
<author> | ||
<name>daybreaker</name> | ||
<homepage>http://daybreaker.info</homepage> | ||
<email>[email protected]</email> | ||
</author> | ||
<default> | ||
<recentEntries>5</recentEntries> | ||
<recentComments>5</recentComments> | ||
<recentTrackbacks>5</recentTrackbacks> | ||
<itemsOnGuestbook>6</itemsOnGuestbook> | ||
<tagsInCloud>20</tagsInCloud> | ||
<sortInCloud>1</sortInCloud> | ||
<expandComment>0</expandComment> | ||
<expandTrackback>0</expandTrackback> | ||
<lengthOfRecentNotice>40</lengthOfRecentNotice> | ||
<lengthOfRecentEntry>40</lengthOfRecentEntry> | ||
<lengthOfRecentComment>40</lengthOfRecentComment> | ||
<lengthOfRecentTrackback>40</lengthOfRecentTrackback> | ||
<lengthOfLink>40</lengthOfLink> | ||
<showListOnCategory>1</showListOnCategory> | ||
<showListOnArchive>1</showListOnArchive> | ||
<commentMessage> | ||
<none>No Comment</none> | ||
<single>A comment</single> | ||
</commentMessage> | ||
<trackbackMessage> | ||
<none>No Trackback</none> | ||
<single>A trackback</single> | ||
</trackbackMessage> | ||
<contentWidth>576</contentWidth> | ||
</default> | ||
</skin> |
Oops, something went wrong.