phcpresspro 5.6.0 → 5.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77fc8f5b0b0729ba6289cfb8a1430472b9acd609
4
- data.tar.gz: 168386d473b9e0bf490ef71c9b12d8ee140bc3e6
3
+ metadata.gz: 21f2f704591c04b691115c7fa8798d2f0a41d85c
4
+ data.tar.gz: 367e20c5fcb926da652c46e729534f789368bc2f
5
5
  SHA512:
6
- metadata.gz: 607508d1b19f128ebc8f5b6e8807726136a3ad7fa7455aede1bee7f5703cac87c908e527f7d6a3b03f0da3f0309d1b0437e12c42aa54b527a7809a04c4fc4913
7
- data.tar.gz: c871b5721c22489ccb7f366e79db34ec9973c9c812dd1a20bc06e6494ae44d0ce361b9b85269c7d94fd62df74584aebb1b20f6d465844e0f445b79f3600482bc
6
+ metadata.gz: 5be7ca25d395756641d034a96d8b4fd3be5f0eb610649197dc167ccb45d3e8c129da3fda438dfff4358a8fc060cb9aa075a8c5d0f37e3bcc4b3984408d78d8ce
7
+ data.tar.gz: 8d61f6e22f7ff9c74672c9ec6f7d6d75e686223a45d19330108201a4037ca5395c804b30483b4bed174d429af44526328e842cf4dd30d5d8b3698bf31fc8fdd6
data/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  #### PHCPress
2
2
 
3
- PHCPress(PRO) is a basic rails article engine custom built for larger enterprise use.
3
+ PHCPress(PRO) is a rails CMS engine custom built for larger enterprise use.
@@ -5,7 +5,6 @@ module Phcpresspro
5
5
 
6
6
  # Security & Filters
7
7
  layout '/layouts/phcpresspro/frontend.html.erb'
8
- before_action :set_frontend_article, only: [:show]
9
8
 
10
9
  # Article Index
11
10
  def index
@@ -10,7 +10,7 @@
10
10
  <ol class="breadcrumb">
11
11
  <li><a href="#">Home</a></li>
12
12
  <li><a href="#">Blog</a></li>
13
- <li class="active">Left Sidebar</li>
13
+ <li class="active"><%= yield(:phc_title_tagline) %></li>
14
14
  </ol>
15
15
  </div>
16
16
  </section>
@@ -0,0 +1,72 @@
1
+ <!-- Title System -->
2
+ <% phc_title "Blog" %>
3
+ <% phc_title_tagline "PHCNetworks News & Information" %>
4
+ <!-- Title System -->
5
+
6
+ <!-- Page Header -->
7
+ <section class="page-header dark page-header-xs">
8
+ <div class="container">
9
+ <h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
10
+ <ol class="breadcrumb">
11
+ <li><a href="#">Home</a></li>
12
+ <li><a href="#">Blog</a></li>
13
+ <li class="active"><%= yield(:phc_title_tagline) %></li>
14
+ </ol>
15
+ </div>
16
+ </section>
17
+ <!-- Page Header -->
18
+
19
+ <section>
20
+ <div class="container">
21
+ <div class="row">
22
+
23
+ <!-- Blog List -->
24
+ <div class="col-md-9 col-sm-9">
25
+ <h1 class="blog-post-title"><%= article_index.psttitle %></h1>
26
+ <ul class="blog-post-info list-inline">
27
+ <li>
28
+ <%= link_to "#" do %>
29
+ <i class="fa fa-clock-o"></i>
30
+ <span class="font-lato"><%= article_index.created_at %></span>
31
+ <% end %>
32
+ </li>
33
+ <li>
34
+ <%= link_to "#" do %>
35
+ <i class="fa fa-comment-o"></i>
36
+ <span class="font-lato">0 Comments</span>
37
+ <% end %>
38
+ </li>
39
+ <li>
40
+ <i class="fa fa-folder-open-o"></i>
41
+ <%= link_to "#" do %>
42
+ <span class="font-lato">Design</span>
43
+ <% end %>
44
+ <%= link_to "#" do %>
45
+ <span class="font-lato">Photography</span>
46
+ <% end %>
47
+ </li>
48
+ <li>
49
+ <%= link_to "#" do %>
50
+ <i class="fa fa-user"></i>
51
+ <span class="font-lato"><%= article_index.user_name %></span>
52
+ <% end %>
53
+ </li>
54
+ </ul>
55
+ <% if article_index.pstimage? %>
56
+ <figure class="margin-bottom-20">
57
+ <%= image_tag article_index.pstimage_url, class: "img-responsive" %>
58
+ </figure>
59
+ <% end %>
60
+ <p class="dropcap"><%= article_index.psttext %></p>
61
+ </div>
62
+ <!-- Blog List -->
63
+
64
+ <!-- Right Sidebar -->
65
+ <div class="col-md-3 col-sm-3">
66
+ </div>
67
+ <!-- Right Sidebar -->
68
+
69
+ </div>
70
+ </div>
71
+ <section>
72
+ <!-- Page Content -->
@@ -1,3 +1,3 @@
1
1
  module Phcpresspro
2
- VERSION = "5.6.0"
2
+ VERSION = "5.6.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.0
4
+ version: 5.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
@@ -616,8 +616,8 @@ dependencies:
616
616
  - - ">="
617
617
  - !ruby/object:Gem::Version
618
618
  version: 3.0.1
619
- description: PHCPress(PRO) is a basic rails article engine custom built for larger
620
- enterprise use.
619
+ description: PHCPress(PRO) is a rails CMS engine custom built for larger enterprise
620
+ use.
621
621
  email:
622
622
  - developers@phcnetworks.net
623
623
  executables: []
@@ -722,5 +722,5 @@ rubyforge_project:
722
722
  rubygems_version: 2.5.1
723
723
  signing_key:
724
724
  specification_version: 4
725
- summary: Website News Engine
725
+ summary: Rails CMS Engine
726
726
  test_files: []