#!/bin/bash
# Apply CSS style to 'Taggit.html'
# 
# Author: Mahlon R. Smith - The Software Samurai
# Date  : 16-Dec-2019

if [ -e taggit.html ]; then

   if [ -e applycss_response.txt ]; then

#      idpp -c taggit.html
      idpp -ci --response=applycss_response.txt taggit.html

   else
      echo 'applycss_response.txt not found'
   fi

else
   echo 'taggit.html not found'
fi