using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLocal.IISHandler.designs { class Classic : IDesign { public string GetFSName(string template) { return System.IO.Path.Combine("Full", template); } string FLocal.Common.IOutputParams.preprocessBodyIntermediate(string bodyIntermediate) { return bodyIntermediate. Replace("", "", "\" alt=\""). Replace("", "\"/>"); } public string ContentType { get { return "text/html"; } } public bool IsHuman { get { return true; } } } }