Branding files for use by Georgia EPD-IT
Branding files for use by Georgia EPD.
New EPD logo/icon provided by Erin Ruoff. Available in SVG and PNG.

Available in gold (bitmapped only) and flat color (vector). Vector file originally came from Wikimedia Commons, which work was released into the public domain by the original author.

* The src directory contains original source files.
* The dist directory contains generated and optimized files for use in production.
Run npm install --save ga-epd-brand to include these files as a dependency in your project. Add a gulp task in gulpfile.js to copy the desired files to the appropriate destination. For example,
``js
var paths = {
webRoot: './wwwroot/',
assetsRoot: './wwwroot/assets/',
gaBrand: './node_modules/ga-epd-brand/dist/*/',
gaFavicons: './node_modules/ga-epd-brand/dist/epd-favicons/*',
};
gulp.task('brand.copyFiles', function () {
return gulp.src([paths.gaBrand, '!' + paths.gaFavicons])
.pipe(gulp.dest(paths.assetsRoot));
});
gulp.task('brand.copyFavicons', function () {
return gulp.src(paths.gaFavicons)
.pipe(gulp.dest(paths.webRoot));
});
`
To use the new EPD icon as a shortcut icon in a website, first copy all of the assets in the dist/epd-favicons/ folder into the webroot. Then copy the following lines into the
section of your HTML pages:`html
``