sfc-utils 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,13 +56,19 @@ const LayoutHelmet = ({ meta, url_add, noindex = false }) => {
56
56
  }
57
57
  }
58
58
 
59
+ // Handle special favicon logic
60
+ let favHref = "/favicon.ico"
61
+ if (MARKET_KEY === "TK"){
62
+ favHref = "https://files.sfchronicle.com/devhub-logos/DHlogos-sm.png"
63
+ }
64
+
59
65
  return (
60
66
  <Helmet>
61
67
  <title>{TITLE}</title>
62
68
  <meta name="description" content={DESCRIPTION} />
63
69
  <link
64
70
  rel="shortcut icon"
65
- href="/favicon.ico"
71
+ href={favHref}
66
72
  type="image/x-icon"
67
73
  />
68
74
  <link rel="canonical" href={`${CANONICAL_URL}/${url_add}`} />
package/footer.js CHANGED
@@ -239,6 +239,62 @@ let getFooter = function(meta, forceColor){
239
239
  }
240
240
  ]
241
241
  },
242
+ "Conroe": {
243
+ "About": [
244
+ {
245
+ "text": "Terms of Use",
246
+ "link": "https://www.yourconroenews.com/tos/"
247
+ },
248
+ {
249
+ "text": "Privacy Notice",
250
+ "link": "https://www.yourconroenews.com/privacy/"
251
+ },
252
+ {
253
+ "text": "Your California Privacy Rights",
254
+ "link": "https://www.yourconroenews.com/privacy/#additionalinformationforcaliforniaresidents"
255
+ },
256
+ {
257
+ "text": "Interest Based Ads",
258
+ "link": "https://www.yourconroenews.com/privacy/#interestbasedads"
259
+ },
260
+ {
261
+ "text": "Careers",
262
+ "link": "https://eevd.fa.us6.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1"
263
+ },
264
+ {
265
+ "text": "Our Company",
266
+ "link": "https://www.hearst.com/newspapers/houston-chronicle"
267
+ },
268
+ {
269
+ "text": "Subscribe",
270
+ "link": "https://www.yourconroenews.com/subproject"
271
+ },
272
+ {
273
+ "text": "e-Edition",
274
+ "link": "https://www.yourconroenews.com/e-edition"
275
+ }
276
+ ],
277
+ "Contact": [
278
+ {
279
+ "text": "Advertising",
280
+ "link": "https://marketing.chron.com/"
281
+ },
282
+ {
283
+ "text": "Contact",
284
+ "link": "https://www.yourconroenews.com/contact/"
285
+ }
286
+ ],
287
+ "Connect": [
288
+ {
289
+ "text": "Facebook",
290
+ "link": "https://www.facebook.com/TheCourierofMontgomeryCounty/"
291
+ },
292
+ {
293
+ "text": "Twitter",
294
+ "link": "https://twitter.com/conroecourier"
295
+ }
296
+ ]
297
+ },
242
298
  "Albany": {
243
299
  "About": [
244
300
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sfc-utils",
3
- "version": "1.4.2",
3
+ "version": "1.4.4",
4
4
  "author": "ewagstaff <evanjwagstaff@gmail.com>",
5
5
  "dependencies": {
6
6
  "archieml": "^0.4.2",