Joshua's html
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 182 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 124 KiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 127 KiB |
After Width: | Height: | Size: 140 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 182 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 124 KiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 127 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 36 KiB |
|
@ -0,0 +1,42 @@
|
||||||
|
// (function($) {
|
||||||
|
// var cache = [];
|
||||||
|
// // Arguments are image paths relative to the current page.
|
||||||
|
// $.preLoadImages = function() {
|
||||||
|
// var args_len = arguments.length;
|
||||||
|
// for (var i = args_len; i--;) {
|
||||||
|
// var cacheImage = document.createElement('img');
|
||||||
|
// cacheImage.src = arguments[i];
|
||||||
|
// cache.push(cacheImage);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// })(jQuery)
|
||||||
|
|
||||||
|
|
||||||
|
(function($) {
|
||||||
|
$.preloadimages = function (arr){
|
||||||
|
var newimages=[], loadedimages=0
|
||||||
|
var postaction=function(){}
|
||||||
|
var arr=(typeof arr!="object")? [arr] : arr
|
||||||
|
function imageloadpost(){
|
||||||
|
loadedimages++
|
||||||
|
if (loadedimages==arr.length){
|
||||||
|
postaction(newimages) //call postaction and pass in newimages array as parameter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (var i=0; i<arr.length; i++){
|
||||||
|
newimages[i]=new Image()
|
||||||
|
newimages[i].src=arr[i]
|
||||||
|
newimages[i].onload=function(){
|
||||||
|
imageloadpost()
|
||||||
|
}
|
||||||
|
newimages[i].onerror=function(){
|
||||||
|
imageloadpost()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return { //return blank object with done() method
|
||||||
|
done:function(f){
|
||||||
|
postaction=f || postaction //remember user defined callback functions to be called when images load
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})(jQuery)
|
|
@ -0,0 +1,170 @@
|
||||||
|
ul, li{
|
||||||
|
margin: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
color: #000;
|
||||||
|
font-family: helvetica, arial, sans-serif;
|
||||||
|
}
|
||||||
|
.tp-store{
|
||||||
|
margin: 0 40px;
|
||||||
|
min-width: 780px;
|
||||||
|
}
|
||||||
|
.home{
|
||||||
|
margin: 39px 0 0 18px;
|
||||||
|
background: url(<%= asset_path 'templatestore/h1_bg.png' %>) left top no-repeat;
|
||||||
|
width: 195px;
|
||||||
|
height: 42px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.home:hover{
|
||||||
|
-moz-transition: all 0.1s ease-in-out;
|
||||||
|
-ms-transition: all 0.1s ease-in-out;
|
||||||
|
-webkit-transition: all 0.1s ease-in-out;
|
||||||
|
transition: all 0.1s ease-in-out;
|
||||||
|
opacity: .85;
|
||||||
|
}
|
||||||
|
.home:active{
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
|
.home a{
|
||||||
|
text-indent: -9999px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.header{
|
||||||
|
margin-bottom: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.template-list a{
|
||||||
|
width: 200px;
|
||||||
|
height: 200px;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
background: #00699f;
|
||||||
|
position: relative;
|
||||||
|
margin: 0 0 40px 0;
|
||||||
|
-webkit-box-shadow: 0px 2px 10px 0px #a3a3a3;
|
||||||
|
box-shadow: 0px 2px 10px 0px #a3a3a3;
|
||||||
|
}
|
||||||
|
.template-list .detail{
|
||||||
|
background: #f0f0f0;
|
||||||
|
position: absolute;
|
||||||
|
width: 180px;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
padding: 10px 10px 5px 10px;
|
||||||
|
}
|
||||||
|
.template-list .detail .template-title{
|
||||||
|
display: block;
|
||||||
|
font-size: 13px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
.template-list .detail .template-title:hover{
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.template-list .detail .template-title:active{
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.template-list .detail .price{
|
||||||
|
font-size: 12px;
|
||||||
|
color: #76787a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* orbit template detail page*/
|
||||||
|
.orbit_template_detail .header{
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.breadcrumb{
|
||||||
|
background: none;
|
||||||
|
font-size: 12px;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
padding: 0;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.left-col.span3{
|
||||||
|
width: 170px;
|
||||||
|
}
|
||||||
|
.template-icon{
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
margin: 0 0 5px 0;
|
||||||
|
}
|
||||||
|
.price.btn.btn-primary{
|
||||||
|
margin: 0 0 5px 10px;
|
||||||
|
}
|
||||||
|
.views{
|
||||||
|
font-size: 12px;
|
||||||
|
color: #363636;
|
||||||
|
}
|
||||||
|
.views span{
|
||||||
|
color: #727272;
|
||||||
|
}
|
||||||
|
.view-meta{
|
||||||
|
margin-left: 17px;
|
||||||
|
}
|
||||||
|
.view-meta ul li{
|
||||||
|
font-size: 11px;
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
.right-col.span6{
|
||||||
|
width: 530px;
|
||||||
|
}
|
||||||
|
.right-col h2{
|
||||||
|
font-size: 24px;
|
||||||
|
color: #3e94e4;
|
||||||
|
font-weight: 100;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
.right-col h3{
|
||||||
|
color: #363636;
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: 100;
|
||||||
|
margin: 8px 0;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.template-description{
|
||||||
|
color: #5d5d5d;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.screenshots .slide{
|
||||||
|
width: 580px;
|
||||||
|
height: 360px;
|
||||||
|
}
|
||||||
|
.detail-slide-nav {
|
||||||
|
text-align: center;
|
||||||
|
z-index: 50;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
background: #000000;
|
||||||
|
opacity: .75;
|
||||||
|
width: 580px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.detail-slide-nav a{
|
||||||
|
color: #fff;
|
||||||
|
background: #fff;
|
||||||
|
margin: 0 7px 0 0;
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 10px;
|
||||||
|
width: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.detail-slide-nav a:hover{
|
||||||
|
color: #4bbaf3;
|
||||||
|
background: #4bbaf3;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.detail-slide-nav a.activeSlide {
|
||||||
|
background: #4bbaf3;
|
||||||
|
color: #4bbaf3;
|
||||||
|
}
|
||||||
|
.detail-slide-nav a:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ class Admin::PurchasesController < ApplicationController
|
||||||
require "uri"
|
require "uri"
|
||||||
require 'zip/zip'
|
require 'zip/zip'
|
||||||
|
|
||||||
layout "admin"
|
layout "new_admin"
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@purchases = Purchase.all.entries
|
@purchases = Purchase.all.entries
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
class Admin::TemplateStoreController < ApplicationController
|
||||||
|
|
||||||
|
layout "new_admin"
|
||||||
|
|
||||||
|
def index
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
|
@ -15,3 +15,10 @@
|
||||||
<%= content_tag :li, :class => active_for_controllers('designs') do -%>
|
<%= content_tag :li, :class => active_for_controllers('designs') do -%>
|
||||||
<%= link_to content_tag(:i, nil, :class => 'icons-brush') + content_tag(:span, t(:template)), admin_designs_path %>
|
<%= link_to content_tag(:i, nil, :class => 'icons-brush') + content_tag(:span, t(:template)), admin_designs_path %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
||||||
|
<%= content_tag :li, :class => active_for_controllers('template_store', 'module_store') do -%>
|
||||||
|
<%= link_to content_tag(:i, nil, :class => 'icons-window-block') + content_tag(:span, t(:purchase)), admin_purchases_path %>
|
||||||
|
<%= content_tag :ul, :class => ("nav nav-list " + visible_for_controllers('template_store', 'module_store')) do -%>
|
||||||
|
<%= content_tag :li, link_to(t('store.template'), admin_template_store_path), :class => active_for_action('template_store', 'index') %>
|
||||||
|
<% end %>
|
||||||
|
<% end -%>
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
<% content_for :side_bar do %>
|
||||||
|
<%= render :partial => 'layouts/side_bar', :locals => {:link_name => t('site.settings'), :link_url => admin_site_site_info_path(@site), :side_bar_content => 'admin/sites/side_bar'} %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :page_specific_css do %>
|
||||||
|
<%= stylesheet_link_tag 'templatestore' %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="templatestore tp-store">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="home"><a href="templatestore-detail.html">Orbit Template Store</a></h1>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="template-list row">
|
||||||
|
<% 9.times do %>
|
||||||
|
<div class="template span3">
|
||||||
|
<a href="templatestore-detail.html">
|
||||||
|
<img src="<%= asset_path 'templatestore/template.jpg' %>" alt="Template" />
|
||||||
|
<div class="detail">
|
||||||
|
<strong class="template-title">Orange theme</strong>
|
||||||
|
<em class="price">Free download</em>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -138,6 +138,8 @@ Orbit::Application.routes.draw do
|
||||||
match 'member_select_add' => "member_selects#member_select_add" ,:as => :member_select_add,:via => "post"
|
match 'member_select_add' => "member_selects#member_select_add" ,:as => :member_select_add,:via => "post"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
match 'template_store' => 'template_store#index'
|
||||||
|
|
||||||
end
|
end
|
||||||
# end admin
|
# end admin
|
||||||
|
|
||||||
|
|