Ignore:
Timestamp:
2023-10-15T23:51:46+13:00 (8 months ago)
Author:
davidb
Message:

Work developing tablet-friendly and mobile-friendly CSS display

Location:
gs3-installations/thewillow/trunk/interfaces/thewillow/images
Files:
20 added
1 edited

Legend:

Unmodified
Added
Removed
  • gs3-installations/thewillow/trunk/interfaces/thewillow/images/CONVERT-FOOTER-IMAGES.sh

    r38305 r38306  
    11#!/bin/bash
     2
     3if [ ! -d footer-logos-tablet ] ; then
     4    echo "Creating 'footer-logos-tablet'"
     5    mkdir footer-logos-tablet
     6fi
     7
     8for full_f in footer-logos/*.png ; do
     9    f="${full_f#*/}"
     10    echo "Generating tablet-sized (size 75%) logo for: $full_f"
     11   
     12    convert "$full_f"  -resize 75% "footer-logos-tablet/$f"
     13done
     14
    215
    316if [ ! -d footer-logos-mobile ] ; then
Note: See TracChangeset for help on using the changeset viewer.