phcpresspro 35.0.0 → 36.0.0

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
  SHA256:
3
- metadata.gz: 9cc52d5dd4ca831a769756bd2873433bcaffe61e181a73be896b9263ea54e83b
4
- data.tar.gz: 925f43dcc08930c5d7fcf24b95a00d2a527e4472602a0de72efd72a8cbdd2591
3
+ metadata.gz: cecbcd5f3d78b0b9858ed8e68a16fb42aabe6dc6e2752ae45206c675f0ccaeac
4
+ data.tar.gz: d07205d90be62b5afb529042053ff5827b6687422c2ea8dcb8a2b82d93a56ea4
5
5
  SHA512:
6
- metadata.gz: 9a22870dd4bc7775c062c65ff9d931948899cc23c680fd1a2508ef10ff03096c44d4efd8d45e19a45f0a4389b665d252dd26a4fde3d1fa0cc4b6d2fb5f11b74c
7
- data.tar.gz: 5233bc163e37acfb55ce627f5fbfdc529375404a25a2d1a12feeb161077c26d745b8fb46ff9ae9a4cdb17e5a63f05283adbe33d352660b74207ce3f79173fe01
6
+ metadata.gz: d09ee7125e3f4ad3497fa38ce47deb826470a0ffd01741c1a7a447775b4032379b6d221262dd5318fa5a9664ddf54d97494a7c6c69e8dfc2aa680c2dae7e1617
7
+ data.tar.gz: bfbc011cceafb50575e43bdd0a8531be20d897480a960d59029a11329e45a460cfedc611655f5e5c73225683f92c108e939e4fa3c776d1c1f57b7c6c64097cee
data/README.md CHANGED
@@ -10,7 +10,7 @@ PHCPress(PRO) rails CMS engine to manage your website's articles, categories and
10
10
 
11
11
  #### Step 1 - Add PHCPress to your gemfile and run command
12
12
 
13
- gem 'phcpresspro', '~> 34.0'
13
+ gem 'phcpresspro', '~> 36.0'
14
14
  bundle install
15
15
 
16
16
  #### Step 2 - Copy PHCPress Database Tables
@@ -1,41 +1,63 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
- <head>
4
-
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title><%= content_for?(:title) ? yield(:title) : "PHCPress - Rails CMS Engine" %></title>
7
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
8
- <link rel="canonical" href="http://phcnetworks.net">
9
-
10
- <!-- Font -->
11
- <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400%7CRaleway:300,400,500,600,700%7CLato:300,400,400italic,600,700"/>
12
-
13
- <!-- Requried Style Sheets -->
14
- <%= stylesheet_link_tag "phcpresspro/application", media: "all", 'data-turbolinks-track': 'reload' %>
15
-
16
- <!-- Security -->
17
- <%= csrf_meta_tags %>
18
-
19
- </head>
20
- <body>
21
- <div id="wrapper" class="<%= params[:controller] %>.<%= params[:action] %>">
22
- <nav class="navbar-default navbar-static-side" role="navigation">
23
- <%= render 'layouts/phcpresspro/components/backend/sidebars/left_sidebar' %>
24
- </nav>
25
- <div id="page-wrapper" class="gray-bg <%= @extra_class %>">
26
- <div class="row border-bottom">
27
- <%= render 'layouts/phcpresspro/components/backend/navigation/top_bar' %>
28
- </div>
29
- <%= yield %>
30
- <div class="footer">
31
- <%= render 'layouts/phcpresspro/components/backend/footer/footer' %>
3
+ <head>
4
+
5
+ <!-- Meta Info -->
6
+ <%= render 'layouts/components/frontend/seo/seo_main' %>
7
+ <!-- Font -->
8
+ <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400%7CRaleway:300,400,500,600,700%7CLato:300,400,400italic,600,700"/>
9
+
10
+ <!-- Requried StyleSheets -->
11
+ <%= stylesheet_link_tag "application", media: "all", 'data-turbolinks-track': 'reload' %>
12
+ <!-- Requried JavaScripts -->
13
+ <%= javascript_include_tag "application", 'data-turbolinks-track': 'reload' %>
14
+ <!-- Security -->
15
+ <%= csrf_meta_tags %>
16
+
17
+ </head>
18
+ <body class="smoothscroll enable-animation">
19
+
20
+ <!-- Start Top Slideout Above Navigation Bar -->
21
+ <div id="slidetop">
22
+ <%= render 'layouts/components/frontend/header/slideout' %>
23
+ </div>
24
+ <!-- End Top Slideout Above Navigation Bar -->
25
+
26
+ <!-- Start Main Wrapper -->
27
+ <div id="wrapper">
28
+
29
+ <!-- Start Main Navigation -->
30
+ <div id="header" class="navbar-toggleable-md sticky dark header-md transparent b-0 clearfix">
31
+ <%= render 'layouts/components/frontend/navigation/navigation' %>
32
+ </div>
33
+ <!-- End Main Navigation -->
34
+
35
+
36
+ <%= yield %>
37
+
38
+ <!-- Start Footer Wrapper -->
39
+ <footer id="footer">
40
+ <div class="container">
41
+ <!-- Start Footer Main Information -->
42
+ <div class="row">
43
+ <%= render 'layouts/components/frontend/footer/footer' %>
32
44
  </div>
45
+ <!-- End Footer Main Information -->
33
46
  </div>
34
- <%= render 'layouts/phcpresspro/components/backend/sidebars/right_sidebar' %>
35
- </div>
47
+ <!-- Start Footer Copyright Information -->
48
+ <div class="copyright">
49
+ <%= render 'layouts/components/frontend/footer/footer_copyright' %>
50
+ </div>
51
+ <!-- End Footer Copyright Information -->
52
+ </footer>
53
+ <!-- End Footer Wrapper -->
54
+
55
+ </div>
56
+ <!-- End Main Wrapper -->
36
57
 
37
- <!-- Requried JavaScripts -->
38
- <%= javascript_include_tag "phcpresspro/application", 'data-turbolinks-track': 'reload' %>
58
+ <!-- Scroll to Top -->
59
+ <a href="#" id="toTop"></a>
60
+ <!-- Scroll to Top -->
39
61
 
40
- </body>
62
+ </body>
41
63
  </html>
@@ -1,4 +1,4 @@
1
- <!-- Start loads SEO Template Files From main_app -->
1
+ <!-- Start load Footer Template Files From main_app -->
2
2
  <div class="col-md-3">
3
3
  <%= render 'layouts/components/frontend/footer/footer_address' %>
4
4
  </div>
@@ -11,4 +11,4 @@
11
11
  <div class="col-md-3">
12
12
  <%= render 'layouts/components/frontend/footer/footer_socialconnect' %>
13
13
  </div>
14
- <!-- End loads SEO Template Files From main_app -->
14
+ <!-- End load Footer Template Files From main_app -->
@@ -1,7 +1,8 @@
1
+ <!-- Start Copyright Information -->
1
2
  <div class="container">
2
3
 
3
- <ul class="pull-right nomargin list-inline mobile-block">
4
- <li><%= link_to "Home", main_app.root_path, class: "nav-link" %></li>
4
+ <ul class="float-right m-0 list-inline mobile-block">
5
+ <li><%= link_to "Home", main_app.root_path %></li>
5
6
  <li>&bull;</li>
6
7
  <li><%= link_to "PHCNetworks", "https://phcnetworks.net", target: "_blank", rel: "nofollow" %></li>
7
8
  <li>&bull;</li>
@@ -14,6 +15,7 @@
14
15
  <li><%= link_to "Terms & Conditions", "#", target: "_blank", rel: "nofollow" %></li>
15
16
  </ul>
16
17
 
17
- <strong>PHC</strong>Networks &copy; 2012-<%= Time.now.year %> - v<%= Gem.loaded_specs["phcpresspro"].version.to_s %> - RELEASED - JAN-<%= Date.today.year %>
18
+ PHCNetworks &copy; 2012-<%= Time.now.year %> - v4.0.0 - RELEASED - JAN-<%= Date.today.year %>
18
19
 
19
20
  </div>
21
+ <!-- End Copyright Information -->
@@ -7,7 +7,7 @@
7
7
  </div>
8
8
 
9
9
  <div class="col-md-3">
10
- <h6><i class="icon-attachment"></i> A PHCNETWORKS COMPANY</h6>
10
+ <h6><i class="far fa-link"></i> A PHCNETWORKS COMPANY</h6>
11
11
  <ul class="list-unstyled">
12
12
  <%= render 'layouts/components/frontend/header/slideout_links' %>
13
13
  </ul>
@@ -1,3 +1,4 @@
1
+ <!-- Load Main Navigation -->
1
2
  <header id="topNav">
2
3
  <div class="container">
3
4
 
@@ -8,20 +9,21 @@
8
9
  <!-- Mobile Navigation -->
9
10
 
10
11
  <!-- Logo -->
11
- <%= link_to main_app.root_path, class: "logo pull-left phc_logo" do %>
12
- <%= ENV["PHC_SITE_BRAND_NAME"] %>
12
+ <%= link_to main_app.root_path, class: "logo float-left phc_logo" do %>
13
+ PHCNetworks
13
14
  <% end %>
14
15
  <!-- Logo -->
15
16
 
16
- <!-- Loads Main Navigation Template from main_app -->
17
- <div class="navbar-collapse pull-right nav-main-collapse collapse submenu-dark">
17
+ <!-- Load Main Navigation Template from main_app -->
18
+ <div class="navbar-collapse collapse float-right nav-main-collapse submenu-dark">
18
19
  <nav class="nav-main">
19
20
  <ul id="topMain" class="nav nav-pills nav-main">
20
21
  <%= render 'layouts/components/frontend/navigation/navigation_links' %>
21
22
  </ul>
22
23
  </nav>
23
24
  </div>
24
- <!-- Loads Main Navigation Template File from main_app -->
25
+ <!-- Load Main Navigation Template File from main_app -->
25
26
 
26
27
  </div>
27
28
  </header>
29
+ <!-- Load Main Navigation -->
@@ -1,14 +1,14 @@
1
- <!-- Start Standardized Title Bar -->
2
- <div class="overlay dark-5"></div>
3
- <div class="container">
4
-
5
- <h1><%= yield(:phc_title) %></h1>
6
- <span class="font-lato size-18 weight-300"><%= yield(:phc_title_tagline) %></span>
7
- <ol class="breadcrumb">
8
- <li><%= link_to "Home", main_app.root_path %></li>
9
- <li><%= yield(:phc_title) %></li>
10
- <li class="active"><%= yield(:phc_title_tagline) %></li>
11
- </ol>
12
-
13
- </div>
14
- <!-- Start Standardized Title Bar -->
1
+ <!-- Start Standardized Title Bar -->
2
+ <div class="overlay dark-5"></div>
3
+ <div class="container">
4
+
5
+ <h1><%= yield(:phc_title) %></h1>
6
+ <span class="font-lato size-18 weight-300"><%= yield(:phc_title_tagline) %></span>
7
+ <ol class="breadcrumb">
8
+ <li><%= link_to "Home", main_app.root_path %></li>
9
+ <li><%= yield(:phc_title) %></li>
10
+ <li class="active"><%= yield(:phc_title_tagline) %></li>
11
+ </ol>
12
+
13
+ </div>
14
+ <!-- Start Standardized Title Bar -->
@@ -1,3 +1,3 @@
1
1
  module Phcpresspro
2
- VERSION = "35.0.0"
2
+ VERSION = "36.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 35.0.0
4
+ version: 36.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-16 00:00:00.000000000 Z
11
+ date: 2018-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paper_trail