Adding plugins.
This commit is contained in:
parent
e50078046f
commit
e27bcf325a
4 changed files with 149 additions and 7 deletions
|
@ -59,8 +59,9 @@
|
|||
<nav id="menu" class="menu">
|
||||
<ul id="tiny">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li class="active"><a href="docs.html">Docs</a>
|
||||
<li><a href="download.html">Download</a>
|
||||
<li class="active"><a href="docs.html">Docs</a></li>
|
||||
<li><a href="plugins.html">Plugins</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- End Menu -->
|
||||
|
@ -239,7 +240,7 @@ Robots: noindex,nofollow
|
|||
{% endif %}</pre>
|
||||
<hr>
|
||||
<h3 id="plugins">Plugins</h3>
|
||||
<p>Plugins can be created by creating a new PHP file and placing it in the "plugins" folder. Plugins can be placed
|
||||
<p><a href="plugins.html">Plugins</a> can be created by creating a new PHP file and placing it in the "plugins" folder. Plugins can be placed
|
||||
in a sub folder if required. In your new plugin PHP file you need to create class with the <strong>same name</strong> as
|
||||
the file. So if you create a file called <code>my_plugin.php</code> your class needs to be called <code>My_Plugin</code>.</p>
|
||||
|
||||
|
|
|
@ -59,8 +59,9 @@
|
|||
<nav id="menu" class="menu">
|
||||
<ul id="tiny">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="docs.html">Docs</a>
|
||||
<li class="active"><a href="download.html">Download</a>
|
||||
<li><a href="docs.html">Docs</a></li>
|
||||
<li><a href="plugins.html">Plugins</a></li>
|
||||
<li class="active"><a href="download.html">Download</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- End Menu -->
|
||||
|
|
|
@ -60,8 +60,9 @@
|
|||
<nav id="menu" class="menu">
|
||||
<ul id="tiny">
|
||||
<li class="active"><a href="index.html">Home</a></li>
|
||||
<li><a href="docs.html">Docs</a>
|
||||
<li><a href="download.html">Download</a>
|
||||
<li><a href="docs.html">Docs</a></li>
|
||||
<li><a href="plugins.html">Plugins</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- End Menu -->
|
||||
|
|
139
plugins.html
Normal file
139
plugins.html
Normal file
|
@ -0,0 +1,139 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>Plugins | Pico</title>
|
||||
<!--link rel="shortcut icon" type="image/x-icon" href="style/images/favicon.png" /-->
|
||||
<link rel="stylesheet" type="text/css" href="style.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="style/css/color/red.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="style/css/media-queries.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="style/js/fancybox/jquery.fancybox.css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="style/js/fancybox/helpers/jquery.fancybox-thumbs.css?v=1.0.2" />
|
||||
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="style/type/fontello.css">
|
||||
<!--[if IE 8]>
|
||||
<link rel="stylesheet" type="text/css" href="style/css/ie8.css" media="all" />
|
||||
<![endif]-->
|
||||
<!--[if IE 9]>
|
||||
<link rel="stylesheet" type="text/css" href="style/css/ie9.css" media="all" />
|
||||
<![endif]-->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="style/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript" src="style/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/ddsmoothmenu.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.isotope.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/selectnav.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.slickforms.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.easytabs.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.fitvids.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.fancybox.pack.js"></script>
|
||||
<script type="text/javascript" src="style/js/fancybox/helpers/jquery.fancybox-thumbs.js?v=1.0.2"></script>
|
||||
<script type="text/javascript" src="style/js/fancybox/helpers/jquery.fancybox-media.js?v=1.0.0"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.themepunch.plugins.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.themepunch.revolution.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/jquery.touchcarousel-1.2.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/twitter.min.js"></script>
|
||||
<script type="text/javascript" src="style/js/boostrapslider.js"></script>
|
||||
<script type="text/javascript">
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-3892196-38']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
</head>
|
||||
<body class="full-layout">
|
||||
<!-- Begin Body Wrapper -->
|
||||
<div class="body-wrapper">
|
||||
<!-- Begin Top Wrapper -->
|
||||
<div class="top-wrapper">
|
||||
<header>
|
||||
<div class="inner">
|
||||
<div class="logo"><a href="index.html"><img src="style/images/logo.png" alt="" /></a></div>
|
||||
<!-- Begin Menu -->
|
||||
<nav id="menu" class="menu">
|
||||
<ul id="tiny">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="docs.html">Docs</a></li>
|
||||
<li class="active"><a href="plugins.html">Plugins</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- End Menu -->
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
<!-- End Top Wrapper -->
|
||||
<!-- Begin Light Wrapper -->
|
||||
<div class="light-wrapper">
|
||||
|
||||
<!-- Begin Inner -->
|
||||
<div class="inner">
|
||||
<h1 class="aligncenter">Pico Plugins</h1>
|
||||
<p class="description aligncenter">Below are some plugins which extend the functionality of Pico and make it even more awesome.<br />
|
||||
Want to make a plugin? See <a href="docs.html#plugins">the docs</a>.
|
||||
</p>
|
||||
<br />
|
||||
<div class="one-third">
|
||||
<h3>Pico RSS</h3>
|
||||
<p>Provides an RSS Feed for Pico. It will only include content with a "Date" field.</p>
|
||||
<p><a href="https://github.com/gilbitron/Pico-RSS-Plugin" class="button red">Download</a></p>
|
||||
</div>
|
||||
<div class="one-third">
|
||||
<h3>Pico Draft</h3>
|
||||
<p>This is a Pico plugin that integrates <a href="http://draftin.com" target="_blank">Draft</a> into Pico.
|
||||
You can see a tutorial on how to use it on <a href="http://www.codeforest.net/pico-cms-and-draft" target="_blank">Codeforest</a>.</p>
|
||||
<p><a href="https://github.com/codeforest/pico_draft" class="button red">Download</a></p>
|
||||
</div>
|
||||
<div class="one-third last">
|
||||
<h3>Pico Editor</h3>
|
||||
<p>Provides an online Markdown editor and file manager for Pico.</p>
|
||||
<p><a href="https://github.com/gilbitron/Pico-Editor-Plugin" class="button red">Download</a></p>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<br />
|
||||
<p class="aligncenter">Have you created a plugin for Pico?
|
||||
<a href="https://github.com/gilbitron/Pico/wiki/Pico-Plugins">Add it to the wiki</a> and we'll put it up here.</p>
|
||||
</div>
|
||||
<!-- End Inner -->
|
||||
</div>
|
||||
<!-- End Light Wrapper -->
|
||||
|
||||
<!-- Begin Footer Wrapper -->
|
||||
<footer class="aligncenter">
|
||||
<!-- Begin Inner -->
|
||||
<div class="inner">
|
||||
<h1>Want to Contribute?</h1>
|
||||
<p class="description">Help make Pico better by checking out the <a href="https://github.com/gilbitron/Pico">GitHub repository</a> and submitting pull requests.<br />
|
||||
If you find a bug please report it on the <a href="https://github.com/gilbitron/Pico/issues">issues page</a>.</p>
|
||||
<ul class="social">
|
||||
<li><a href="https://twitter.com/dev7studioshq"><i class="icon-s-twitter"></i></a></li>
|
||||
<li><a href="https://www.facebook.com/dev7studios"><i class="icon-s-facebook"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- Begin Inner -->
|
||||
</footer>
|
||||
<!-- End Footer Wrapper -->
|
||||
|
||||
<!-- Begin Sub Footer Wrapper -->
|
||||
<div class="subfooter-wrapper">
|
||||
<!-- Begin Inner -->
|
||||
<div class="inner">
|
||||
<p>Pico was made by <a href="http://gilbert.pellegrom.me">Gilbert Pellegrom</a> from <a href="http://dev7studios.com">Dev7studios</a>.
|
||||
Released under the MIT license.</p>
|
||||
</div>
|
||||
<!-- Begin Inner -->
|
||||
</div>
|
||||
<!-- End Sub Footer Wrapper -->
|
||||
|
||||
</div>
|
||||
<!-- End Body Wrapper -->
|
||||
<script type="text/javascript" src="style/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue