public AboutChapter(ICommonPageSupport commonPageSupport)
            : base(commonPageSupport)
        {
            NLog.LogManager.GetCurrentClassLogger().Info("constructor");

            mLinkInfo = new LinkInfo();
            mLinkInfo.Label = "About";

            this.SourceDirName = "About";
            
            this.AddPage(new AboutPage(commonPageSupport, this));
        }
        public TeamChapter(ICommonPageSupport commonPageSupport)
            : base(commonPageSupport)
        {
            NLog.LogManager.GetCurrentClassLogger().Info("constructor");

            mLinkInfo = new LinkInfo();
            mLinkInfo.Label = "Team";
            mLinkInfo.Url = "team";

            this.TargetDirName = "team";

            this.SourceDirName = "Team";

            this.AddPage(new TeamPage(commonPageSupport, this));

            this.AddFile(new TstFile(this));
        }