Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
62 additions
and 82 deletions.
- +1 −1 .gitignore
- +1 −1 LICENSE.md
- +1 −1 README.md
- BIN doc/img/favicon.ico
- 0 docs/.nojekyll
- +1 −1 doc/index.md → docs/README.md
- +5 −0 docs/_sidebar.md
- +1 −1 {doc → docs}/about/license.md
- 0 {doc → docs}/about/see_also.md
- BIN docs/favicon.ico
- BIN docs/favicon.png
- +40 −0 docs/index.html
- +5 −8 {doc → docs}/installation.md
- +5 −6 {doc → docs}/usage.md
- +0 −54 etc/mkdocs.yaml
- +2 −2 etc/phpdoc.xml
- +0 −1 etc/requirements.txt
- +0 −6 readthedocs.yaml
Binary file not shown.
Empty file.
@@ -0,0 +1,5 @@ | ||
- [Installation](installation.md) | ||
- [Usage](usage.md) | ||
- About | ||
- [License](about/license.md) | ||
- [See also](about/see_also.md) |
File renamed without changes.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Mustache for Yii</title> | ||
|
||
<meta name="application-name" content="Mustache for Yii"> | ||
<meta name="author" content="Cédric Belin - cedric@belin.io"> | ||
<meta name="description" content="Mustache templating for the Yii Framework."> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="referrer" content="same-origin"> | ||
<meta name="theme-color" content="#3e7fca"> | ||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, shrink-to-fit=no, user-scalable=no, width=device-width"> | ||
|
||
<link rel="icon" href="favicon.ico" sizes="16x16 32x32 48x48" type="image/x-icon"> | ||
<link rel="icon" href="favicon.png" sizes="192x192" type="image/png"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css"> | ||
|
||
<script> | ||
window.$docsify = { | ||
alias: {"/.*/_sidebar.md": "/_sidebar.md"}, | ||
auto2top: true, | ||
ga: "UA-38560031-41", | ||
loadSidebar: true, | ||
name: "Mustache for Yii", | ||
repo: "https://git.belin.io/cedx/yii2-mustache", | ||
themeColor: "#3e7fca" | ||
}; | ||
</script> | ||
|
||
<script defer src="https://cdn.jsdelivr.net/npm/docsify"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-php.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
</body> | ||
</html> |