Merge branch 'master' into fadeit@v4.x
This commit is contained in:
commit
d5df4ced66
11
README.md
11
README.md
|
|
@ -13,8 +13,13 @@ Here are some examples:
|
||||||

|

|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
- Clone repo `git clone https://github.com/fadeit/responsive-html-email-signature.git`
|
||||||
- Clone repo & run `yarn` or `npm install`
|
- Clone repo & run `yarn` or `npm install`
|
||||||
- Edit files in */templates* and run `gulp` to build them into *./dist*
|
- Run `gulp` to generate templates from configuration
|
||||||
|
|
||||||
|
### Customizing templates
|
||||||
|
- Edit files in */templates*
|
||||||
|
- Run `gulp watch` to watch templates and re-generate
|
||||||
- Open files from `./dist` in your fav browser to check them out
|
- Open files from `./dist` in your fav browser to check them out
|
||||||
|
|
||||||
> When you're done, check out [how to add them to your email client of choice](#usage-with-different-email-clients) if in doubt.
|
> When you're done, check out [how to add them to your email client of choice](#usage-with-different-email-clients) if in doubt.
|
||||||
|
|
@ -47,6 +52,8 @@ $ yarn # or npm install
|
||||||
$ gulp # By default, HTML & CSS files in './src' will be watched for changes
|
$ gulp # By default, HTML & CSS files in './src' will be watched for changes
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> Note: it's built using node v7.x, so please make sure your node version is up to date. Version 6+ should be fine.
|
||||||
|
|
||||||
### Configuring
|
### Configuring
|
||||||
To make a basic email from existing templates, you only have to edit the `conf.json` file in each template.
|
To make a basic email from existing templates, you only have to edit the `conf.json` file in each template.
|
||||||
|
|
||||||
|
|
@ -222,7 +229,7 @@ Unfortnately, Outlook 2010 client dosen't support HTML file import features for
|
||||||
|
|
||||||
> **NB**: base 64 will not be shown on Outlook 2010 client. So, I recommend to use external url if you want to use images.
|
> **NB**: base 64 will not be shown on Outlook 2010 client. So, I recommend to use external url if you want to use images.
|
||||||
|
|
||||||
===================
|
------------------------------
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
<a href="http:fadeit.dk"><img src="https://fadeit.dk/src/assets/img/brand/fadeit_logo_full.svg" alt="The fadeit logo" style="width:200px;"/></a><br/><br/>
|
<a href="http:fadeit.dk"><img src="https://fadeit.dk/src/assets/img/brand/fadeit_logo_full.svg" alt="The fadeit logo" style="width:200px;"/></a><br/><br/>
|
||||||
|
|
|
||||||
|
|
@ -27,4 +27,4 @@ fs
|
||||||
});
|
});
|
||||||
|
|
||||||
/** By default templates will be built into '/dist', then gulp will watch for changes in '/src'. */
|
/** By default templates will be built into '/dist', then gulp will watch for changes in '/src'. */
|
||||||
gulp.task('default', ['dupe', 'less', 'sass', 'postcss', 'lint', 'build', 'watch']);
|
gulp.task('default', ['dupe', 'less', 'sass', 'postcss', 'lint', 'build']);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "responsive-html-email-signature",
|
"name": "responsive-html-email-signature",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"description": "Responsive template for email signatures",
|
"description": "Responsive template for email signatures",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue