Skip to content

Commit a7c3e52

Browse files
committed
Latest branding assets
1 parent 5149912 commit a7c3e52

21 files changed

+75
-109
lines changed

Gruntfile.js

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -76,31 +76,19 @@ module.exports = function (grunt)
7676
},
7777
{
7878
expand: true,
79-
cwd: 'node_modules/textpattern-branding/assets/img/',
79+
cwd: 'node_modules/textpattern-branding/img/',
8080
src: '**',
8181
dest: '<%= paths.dest.img %>branding/'
8282
},
8383
{
8484
expand: true,
85-
cwd: 'node_modules/textpattern-branding/assets/img/apple-touch-icon/textpattern/',
85+
cwd: 'node_modules/textpattern-branding/img/favicons/',
8686
src: '**',
8787
dest: 'public/'
8888
},
8989
{
9090
expand: true,
91-
cwd: 'node_modules/textpattern-branding/assets/img/favicon/textpattern/',
92-
src: '**',
93-
dest: 'public/'
94-
},
95-
{
96-
expand: true,
97-
cwd: 'node_modules/textpattern-branding/assets/img/windows-site-tile/textpattern/',
98-
src: '**',
99-
dest: 'public/'
100-
},
101-
{
102-
expand: true,
103-
cwd: 'node_modules/textpattern-branding/assets/img/misc/',
91+
cwd: 'node_modules/textpattern-branding/img/misc/',
10492
src: ['hi.png', 'hi@2x.png'],
10593
dest: 'public/'
10694
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"easeljs": "1.0.2",
3636
"preloadjs": "1.0.1",
3737
"prismjs": "1.23.0",
38-
"textpattern-branding": "0.2.12",
38+
"textpattern-branding": "0.3.0",
3939
"tweenjs": "1.0.2"
4040
},
4141
"browserslist": [

public/.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
/img
88
/index.php
99
/mockups
10-
/themes/*/
1110
/textpattern
11+
/themes/*/
1212
/vendor
1313
/video
14-
/*.png
1514
/*.ico
15+
/*.png
16+
/*.svg

public/browserconfig.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

public/site.webmanifest

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,8 @@
33
"name": "Textpattern CMS Homepage",
44
"start_url": "https://textpattern.com",
55
"icons": [
6-
{
7-
"src": "/favicon-192x192.png",
8-
"sizes": "192x192",
9-
"type": "image/png"
10-
},
11-
{
12-
"src": "/favicon-512x512.png",
13-
"sizes": "512x512",
14-
"type": "image/png"
15-
}
6+
{ "src": "/icon-192.png", "sizes": "192x192", "type": "image/png" },
7+
{ "src": "/icon-512.png", "sizes": "512x512", "type": "image/png" }
168
],
179
"background_color": "#ffffff",
1810
"theme_color": "#ffda44",

src/docs/design-patterns.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
<meta name="robots" content="index, follow">
1818
<meta name="description" content="Examples of various inline and block elements that should be considered and styled within the website.">
19-
<meta name="color-scheme" content="dark light">
2019

2120
<!-- All the favicons, touch icons, etc. -->
22-
<meta name="application-name" content="Textpattern CMS">
23-
<link rel="manifest" href="site.webmanifest">
24-
<link rel="icon" sizes="32x32" href="favicon-32x32.png">
25-
<link rel="icon" sizes="16x16" href="favicon-16x16.png">
21+
<link rel="icon" href="/favicon.ico">
22+
<link rel="icon" href="/icon.svg" type="image/svg+xml">
23+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
24+
<link rel="manifest" href="/site.webmanifest">
25+
<meta name="color-scheme" content="dark light">
2626

2727
<link rel="canonical" href="https://textpattern.com/design-patterns.html">
2828

@@ -31,7 +31,7 @@
3131
<meta name="twitter:site" content="@textpattern">
3232
<meta name="twitter:title" content="Textpattern CMS">
3333
<meta name="twitter:description" content="Article containing examples of various inline and block elements that should be considered and styled within the site.">
34-
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon-180x180.png">
34+
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon.png">
3535
<meta name="twitter:url" content="https://textpattern.com/design-patterns.html">
3636

3737
<script defer src="assets/js/app.js"></script>

src/mockups/blog-article.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
<meta name="robots" content="index, follow">
1313
<meta name="description" content="This is where a blog article extract/description would be.">
14-
<meta name="color-scheme" content="dark light">
1514

1615
<!-- All the favicons, touch icons, etc. -->
17-
<meta name="application-name" content="Textpattern CMS">
18-
<link rel="manifest" href="../site.webmanifest">
19-
<link rel="icon" sizes="32x32" href="../favicon-32x32.png">
20-
<link rel="icon" sizes="16x16" href="../favicon-16x16.png">
16+
<link rel="icon" href="/favicon.ico">
17+
<link rel="icon" href="/icon.svg" type="image/svg+xml">
18+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
19+
<link rel="manifest" href="/site.webmanifest">
20+
<meta name="color-scheme" content="dark light">
2121

2222
<script defer src="../assets/js/app.js"></script>
2323
<link rel="canonical" href="https://textpattern.com/mockups/blog-article.html">
@@ -27,7 +27,7 @@
2727
<meta name="twitter:site" content="@textpattern">
2828
<meta name="twitter:title" content="Blog article example">
2929
<meta name="twitter:description" content="This is where a blog article extract/description would be.">
30-
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon-180x180.png">
30+
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon.png">
3131
<meta name="twitter:url" content="https://textpattern.com/mockups/blog-article.html">
3232

3333
<!-- Open Graph -->

src/mockups/blog-landing.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
<meta name="robots" content="index, follow">
1313
<meta name="description" content="Latest blogs from Team Textpattern and guests; Textpattern news and other tidbits of info that we find of interest.">
14-
<meta name="color-scheme" content="dark light">
1514

1615
<!-- All the favicons, touch icons, etc. -->
17-
<meta name="application-name" content="Textpattern CMS">
18-
<link rel="manifest" href="../site.webmanifest">
19-
<link rel="icon" sizes="32x32" href="../favicon-32x32.png">
20-
<link rel="icon" sizes="16x16" href="../favicon-16x16.png">
16+
<link rel="icon" href="/favicon.ico">
17+
<link rel="icon" href="/icon.svg" type="image/svg+xml">
18+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
19+
<link rel="manifest" href="/site.webmanifest">
20+
<meta name="color-scheme" content="dark light">
2121

2222
<script defer src="../assets/js/app.js"></script>
2323
<link rel="canonical" href="https://textpattern.com/mockups/blog-landing.html">
@@ -27,7 +27,7 @@
2727
<meta name="twitter:site" content="@textpattern">
2828
<meta name="twitter:title" content="Blog / Textpattern CMS">
2929
<meta name="twitter:description" content="Latest blogs from Team Textpattern and guests; Textpattern news and other tidbits of info that we find of interest.">
30-
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon-180x180.png">
30+
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon.png">
3131
<meta name="twitter:url" content="https://textpattern.com/mockups/blog-landing.html">
3232

3333
<!-- Open Graph -->

src/mockups/documentation-example.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111

1212
<meta name="robots" content="index, follow">
1313
<meta name="description" content="This is where a documentation article extract/description would be.">
14-
<meta name="color-scheme" content="dark light">
1514

1615
<!-- All the favicons, touch icons, etc. -->
17-
<link rel="manifest" href="../site.webmanifest">
18-
<link rel="icon" sizes="32x32" href="../favicon-32x32.png">
19-
<link rel="icon" sizes="16x16" href="../favicon-16x16.png">
16+
<link rel="icon" href="/favicon.ico">
17+
<link rel="icon" href="/icon.svg" type="image/svg+xml">
18+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
19+
<link rel="manifest" href="/site.webmanifest">
20+
<meta name="color-scheme" content="dark light">
2021

2122
<script defer src="../assets/js/app.js"></script>
2223
<link rel="canonical" href="https://textpattern.com/mockups/documentation-example.html">
@@ -26,7 +27,7 @@
2627
<meta name="twitter:site" content="@textpattern">
2728
<meta name="twitter:title" content="Textpattern CMS">
2829
<meta name="twitter:description" content="This is where a documentation article extract/description would be.">
29-
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon-180x180.png">
30+
<meta name="twitter:image:src" content="https://textpattern.com/apple-touch-icon.png">
3031
<meta name="twitter:url" content="https://textpattern.com/mockups/documentation-example.html">
3132

3233
<!-- JSON-LD -->

src/mockups/error.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
<link rel="stylesheet" href="../assets/css/style.css">
1111

1212
<meta name="robots" content="none">
13-
<meta name="color-scheme" content="dark light">
1413

1514
<!-- All the favicons, touch icons, etc. -->
16-
<meta name="application-name" content="Textpattern CMS">
17-
<link rel="manifest" href="../site.webmanifest">
18-
<link rel="icon" sizes="32x32" href="../favicon-32x32.png">
19-
<link rel="icon" sizes="16x16" href="../favicon-16x16.png">
15+
<link rel="icon" href="/favicon.ico">
16+
<link rel="icon" href="/icon.svg" type="image/svg+xml">
17+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
18+
<link rel="manifest" href="/site.webmanifest">
19+
<meta name="color-scheme" content="dark light">
2020

2121
<script defer src="../assets/js/app.js"></script>
2222
</head>

0 commit comments

Comments
 (0)