APP fronted showing
This commit is contained in:
parent
cb07a35cc9
commit
0e252cf93c
|
@ -10,6 +10,8 @@
|
|||
<r:javascripts>
|
||||
<!-- your javascripts here -->
|
||||
</r:javascripts>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -24,11 +26,25 @@
|
|||
<div id="main_content" class="content">
|
||||
<r:content name='content_1'>
|
||||
</r:content>
|
||||
<div class="dymanic_load" path="/panel/blog/widget_latest_post"></div>
|
||||
<div class="dymanic_load" path="/panel/blog/widget_index"></div>
|
||||
</div>
|
||||
|
||||
<div id="footer" class="footer">
|
||||
This is the footer
|
||||
</div>
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
||||
<script>
|
||||
$.each($(".dymanic_load"),function(){
|
||||
$(this).load($(this).attr("path"),
|
||||
function(respText,textSta,XML){
|
||||
if(textSta == 'error')
|
||||
{$(this).html("Loading Failed");}
|
||||
});
|
||||
}
|
||||
);
|
||||
</script>
|
||||
<!-- END example -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -116,6 +116,11 @@ namespace :dev do
|
|||
|
||||
home = Page.create!( :i18n_variable_id => var_10.id, :design_id => design_1.id, :name => 'home', :is_published => true, :theme_id => theme.id )
|
||||
home.page_parts.create!( :name => 'content_1', :content => File.open("#{Rails.root}/lib/template/home.page").read, :kind => 'text', :i18n_variable_id => var_13.id )
|
||||
|
||||
Post.create(:title=>"1st post",:body=>"Long long time ago.....")
|
||||
Post.create(:title=>"2ec post",:body=>"And?.....")
|
||||
|
||||
|
||||
|
||||
end
|
||||
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
Rails.application.routes.draw do
|
||||
|
||||
namespace :panel do
|
||||
namespace :blog do
|
||||
resources :posts
|
||||
resources :comments
|
||||
end
|
||||
end
|
||||
|
||||
end
|
|
@ -1,4 +1,4 @@
|
|||
<%= stylesheet_link_tag "production"%>
|
||||
<div class="wapper">
|
||||
<div class="production">
|
||||
<%= yield %>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<%=stylesheet_link_tag "NewBlog/application"%>
|
||||
<h1><%= @post.title %> </h1>
|
||||
<h2><%= @post.title %> </h2>
|
||||
<p>
|
||||
<%= @post.body %>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue