Skip to content

Commit 577607b

Browse files
authored
Merge pull request #6 from Netcentric/performance
Performance
2 parents b3c1cdc + aa0f714 commit 577607b

File tree

135 files changed

+7182
-1380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+7182
-1380
lines changed

README.md

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
# Netcentric Open Source Site
22

3-
## To Do
4-
5-
- [x] Import theme
6-
- [x] Create Page / Blog structure
7-
- [x] Add basic NC values to configuration
8-
- [x] Add NC Logo
9-
- [x] Add Homepage content
10-
- [x] Add Homepage meta description
11-
- [x] Add Homepage meta title
12-
- [x] Add footer links back to NC site
13-
- [x] Add link to Github Org
14-
- [x] Add About content
15-
- [x] Remove demo content
16-
- [x] Remove demo content images
17-
- [ ] Add some NC color touches
18-
- [ ] Get rid of the SAsS mixins for transforms, etc.
19-
- [ ] See if we can unused JS/CSS
20-
- [ ] Performance checks
21-
223
## Contribute
234

245
1. Clone the repository
@@ -28,6 +9,8 @@
289

2910
### Install Hugo
3011

12+
This site is built using [Hugo](https://gohugo.io/).
13+
3114
```bash
3215
brew install hugo
3316
# or

config.toml

Lines changed: 7 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,19 @@
11
######################## default configuration ####################
2-
baseURL = "https://examplesite.com"
2+
baseURL = "/"
33
languageCode = "en-us"
44
title = "Netcentric Open Source"
55
theme = "influencer-hugo"
66
summaryLength = "10"
7-
paginate = 6
7+
paginate = 10
8+
9+
[caches]
10+
[caches.getjson]
11+
dir = ":cacheDir/:project"
12+
maxAge = "10s"
813

914
############################# Plugins ##############################
1015
[params.plugins]
1116

12-
# CSS Plugins
13-
[[params.plugins.css]]
14-
URL = "plugins/bootstrap/bootstrap.min.css"
15-
[[params.plugins.css]]
16-
URL = "plugins/slick/slick.css"
17-
[[params.plugins.css]]
18-
URL = "plugins/themify-icons/themify-icons.css"
19-
[[params.plugins.css]]
20-
URL = "plugins/magnific-popup/magnific-popup.css"
21-
22-
# JS Plugins
23-
[[params.plugins.js]]
24-
URL = "plugins/jQuery/jquery.min.js"
25-
[[params.plugins.js]]
26-
URL = "plugins/bootstrap/bootstrap.min.js"
27-
[[params.plugins.js]]
28-
URL = "plugins/slick/slick.min.js"
29-
[[params.plugins.js]]
30-
URL = "plugins/magnific-popup/magnific-popup.min.js"
31-
32-
3317
############################## navigation ###############################
3418
[menu]
3519

@@ -61,8 +45,6 @@ home = "Home"
6145
# Meta data
6246
description = "At Netcentric we value open source and encourage everyone internally and externally to contribute to our projects..."
6347
author = "Themefisher"
64-
# Google Analitycs
65-
googleAnalitycsID = "" # Your ID
6648
[params.copyright]
6749
text = "Netcentric, A Cognizant Digital Business"
6850
link = "https://www.netcentric.biz/"
@@ -76,12 +58,6 @@ preloader = "" # use .png , .svg or .gif format
7658
[params.navButton]
7759
enable = false
7860

79-
# cookies
80-
[params.cookies]
81-
enable = false
82-
expire_days = 2
83-
84-
8561
############################# post share ###################
8662
[[params.share]]
8763
title = "facebook"

data/homepage.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,15 @@ featured:
1313
enable : true
1414
title: "Featured Projects"
1515
featuredItem:
16-
# service item loop
1716
- title : "HTL Style Guide"
18-
icon : "ti-wand" # themify icon pack : https://themify.me/themify-icons
1917
content : "A style guide for the HTML Template Language (HTL), the templating language use by the Adobe Experience Manager "
2018
link: "https://github.com/Netcentric/aem-htl-style-guide"
2119

22-
# service item loop
2320
- title : "Access Control Tool"
24-
icon : "ti-user" # themify icon pack : https://themify.me/themify-icons
2521
content : "Rights and roles management for Adobe Experience Manager made easy."
2622
link : "https://github.com/Netcentric/accesscontroltool"
2723

28-
# service item loop
2924
- title : "Front End Build"
30-
icon : "ti-settings" # themify icon pack : https://themify.me/themify-icons
3125
content : "All in one solution for modern Frontend projects, with special focus on AEM (Adobe Experience Manager)"
3226
link : "https://github.com/Netcentric/fe-build"
3327

static/images/icons/clock.svg

Lines changed: 1 addition & 0 deletions
Loading

static/images/icons/github.svg

Lines changed: 3 additions & 0 deletions
Loading

static/images/icons/person.svg

Lines changed: 1 addition & 0 deletions
Loading

static/images/icons/star.svg

Lines changed: 1 addition & 0 deletions
Loading

static/images/netcentric-logo.svg

Lines changed: 1 addition & 43 deletions
Loading

0 commit comments

Comments
 (0)