Skip to content

Commit f8be73b

Browse files
authored
Merge pull request #29 from Netcentric/new-branding
Fixes #27 #28
2 parents 2c2c4f2 + 725aeaa commit f8be73b

File tree

19 files changed

+55
-68
lines changed

19 files changed

+55
-68
lines changed

config.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
######################## default configuration ####################
22
baseURL = "/"
33
languageCode = "en-us"
4-
title = "Netcentric Open Source"
4+
title = "Cognizant Netcentric Open Source"
55
theme = "influencer-hugo"
66
summaryLength = "10"
77
paginate = 10
88

9+
ignoreErrors = ["error-remote-getjson"]
10+
911
[markup.goldmark.renderer]
1012
unsafe= true
1113

@@ -42,13 +44,13 @@ maxAge = "10s"
4244

4345
#################### default parameters ################################
4446
[params]
45-
logo = "images/netcentric-logo.svg"
47+
logo = "images/cognizant-netcentric-logo.svg"
4648
home = "Home"
4749
# Meta data
48-
description = "At Netcentric we value open source and encourage everyone internally and externally to contribute to our projects..."
50+
description = "At Cognizant Netcentric we value open source and encourage everyone internally and externally to contribute to our projects..."
4951
author = "Themefisher"
5052
[params.copyright]
51-
text = "Netcentric, A Cognizant Digital Business"
53+
text = "Cognizant Netcentric"
5254
link = "https://www.netcentric.biz/"
5355

5456
[params.social]

content/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Home"
3+
date: 2019-11-23T15:28:43+06:00
4+
draft: false
5+
description: "At Cognizant Netcentric we value open source and encourage everyone internally and externally to contribute to our projects."
6+
---

content/blog/2022-01-09.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author:
88
type: "post"
99
---
1010

11-
Netcentric is proud to have launched this microsite to showcase our open source projects and contributions 🙌
11+
Cognizant Netcentric is proud to have launched this microsite to showcase our open source projects and contributions 🙌
1212

1313
## What to expect?
1414

content/blog/2022-01-10.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Netcentric's coding and style rules for Stylelint"
2+
title: "Cognizant Netcentric's coding and style rules for Stylelint"
33
date: 2022-01-10T15:28:43+06:00
44
draft: false
55
author:
@@ -10,9 +10,9 @@ type: "post"
1010

1111
We have recently released a [new open source project](https://github.com/Netcentric/stylelint-config) for all those frontend heroes out there 🎉
1212

13-
At Netcentric we use [Stylelint](https://stylelint.io/) to ensure code quality amongst all projects when it comes to writing CSS, [SASS](https://sass-lang.com/), or [PostCSS](https://postcss.org/).
13+
At Cognizant Netcentric we use [Stylelint](https://stylelint.io/) to ensure code quality amongst all projects when it comes to writing CSS, [SASS](https://sass-lang.com/), or [PostCSS](https://postcss.org/).
1414

15-
We have defined a set of rules as standards for all projects. Upon starting a new project the Tech Lead in charge of creating the frontend build will include this styling configuration. Hence, inheriting the Netcentric code style guidelines. And now, so can you!
15+
We have defined a set of rules as standards for all projects. Upon starting a new project the Tech Lead in charge of creating the frontend build will include this styling configuration. Hence, inheriting the Cognizant Netcentric code style guidelines. And now, so can you!
1616

1717
If you don't know how, we've written a [Readme.md](https://github.com/Netcentric/stylelint-config/blob/main/README.md) for you to get started.
1818

content/blog/2022-05-06.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Netcentric FE Build v2.0.0"
2+
title: "Cognizant Netcentric FE Build v2.0.0"
33
date: 2022-05-06T08:00:00+06:00
44
draft: false
55
author:
@@ -8,7 +8,7 @@ author:
88
type: "post"
99
---
1010

11-
We are proud to announce the release of a major version of the [Netcentric FE Build](https://github.com/netcentric/fe-build/), an all-in-one solution for building modern frontend projects, with special focus on [AEM](https://business.adobe.com/products/experience-manager/adobe-experience-manager.html) (Adobe Experience Manager).
11+
We are proud to announce the release of a major version of the [Cognizant Netcentric FE Build](https://github.com/netcentric/fe-build/), an all-in-one solution for building modern frontend projects, with special focus on [AEM](https://business.adobe.com/products/experience-manager/adobe-experience-manager.html) (Adobe Experience Manager).
1212

1313
The FE Build is a public [npm module](https://www.npmjs.com/package/@netcentric/fe-build) that can be integrated in any project running AEM in order to lint the source files, to compile [SASS](https://sass-lang.com/) and run [PostCSS](https://postcss.org/) plugins on it (like [Autoprefixer](https://github.com/postcss/autoprefixer)), to transpile (and polyfill if needed) ECMAScript 2016+ code into ES5, and to automatically create [clientLibs](https://experienceleague.adobe.com/docs/experience-manager-64/developing/introduction/clientlibs.html?lang=en) from the source files to embed the optimized code.
1414

@@ -21,12 +21,15 @@ This release contains breaking changes. We know these can be disruptive, but the
2121
[Stylelint v14](https://stylelint.io/migration-guide/to-14/) does not no longer includes the syntaxes that parse CSS-like languages like SCSS. You will need to install and configure these syntaxes in your project. We recommend extending a shared config like [@netcentric/stylelint-config](https://github.com/Netcentric/stylelint-config) that includes the appropriate syntax to lint SCSS.
2222

2323
### Migration Guide
24+
2425
First, install the shared config as a dependency:
26+
2527
```
2628
npm install --save-dev @netcentric/stylelint-config
2729
```
2830

29-
Then, update your [Stylelint configuration object]((https://stylelint.io/user-guide/configure/)) to use it:
31+
Then, update your [Stylelint configuration object](<(https://stylelint.io/user-guide/configure/)>) to use it:
32+
3033
```
3134
{
3235
"extends": "@netcentric/stylelint-config",
@@ -37,6 +40,7 @@ Then, update your [Stylelint configuration object]((https://stylelint.io/user-gu
3740
```
3841

3942
## Changelog
43+
4044
### Features
4145

4246
- Adds migration guide ([e537ab1](https://github.com/netcentric/fe-build/commit/e537ab1f2ac12ecfb370459af66f98d9b4a38576)).
@@ -50,5 +54,4 @@ Then, update your [Stylelint configuration object]((https://stylelint.io/user-gu
5054

5155
## About Netcentric Open Source Projects
5256

53-
The FE Build, as other projects in the [Netcentric open source space](https://github.com/Netcentric), is the result of the effort of your colleagues at Netcentric. Anyone can be part of it and help to make it better. If you find an issue, please don't hesitate and [open an issue](https://github.com/Netcentric/fe-build/issues) in Github. Or, even better, open a pull request and start [contributing](https://github.com/Netcentric/fe-build/blob/main/docs/CONTRIBUTING.md) to our open source projects ❤️.
54-
57+
The FE Build, as other projects in the [Cognizant Netcentric open source space](https://github.com/Netcentric), is the result of the effort of your colleagues at Cognizant Netcentric. Anyone can be part of it and help to make it better. If you find an issue, please don't hesitate and [open an issue](https://github.com/Netcentric/fe-build/issues) in Github. Or, even better, open a pull request and start [contributing](https://github.com/Netcentric/fe-build/blob/main/docs/CONTRIBUTING.md) to our open source projects ❤️.

data/homepage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
########################## Banner #############################
22
banner:
33
enable : true
4-
content : "At Netcentric we value open source and encourage everyone internally and externally to contribute to our projects."
4+
content : "At Cognizant Netcentric we value open source and encourage everyone internally and externally to contribute to our projects."
55
cta:
66
text: "Checkout our repos"
77
link: "https://github.com/orgs/Netcentric/repositories"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "netcentric.github.io",
3-
"version": "1.1.0",
4-
"description": "Netcentric Open Source Site",
3+
"version": "2.0.0",
4+
"description": "Cognizant Netcentric Open Source Site",
55
"scripts": {
66
"format": "prettier --write ./content/**/*.md",
77
"prepare": "husky install"
@@ -24,7 +24,7 @@
2424
"postcss-cli": "^9.1.0"
2525
},
2626
"devDependencies": {
27-
"husky": "^7.0.4",
27+
"husky": "^8.0.1",
2828
"prettier": "^2.6.2"
2929
}
3030
}
Lines changed: 1 addition & 0 deletions
Loading

static/images/favicons/site.webmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Netcentric",
3-
"short_name": "Netcentric",
2+
"name": "Cognizant Netcentric",
3+
"short_name": "Cognizant Netcentric",
44
"start_url": "/",
55
"icons": [
66
{
@@ -14,7 +14,7 @@
1414
"type": "image/png"
1515
}
1616
],
17-
"theme_color": "#5a3699",
18-
"background_color": "#5a3699",
17+
"theme_color": "#2E308E",
18+
"background_color": "#2E308E",
1919
"display": "standalone"
2020
}

static/images/icons/heart.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)