Help
RSS
API
Feed
Maltego
Contact
Domain > followafter.net
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2013-09-24
67.23.226.35
(
ClassC
)
2025-03-24
162.0.229.137
(
ClassC
)
Port 80
HTTP/1.1 301 Moved Permanentlykeep-alive: timeout5, max100content-type: text/htmlcontent-length: 795date: Mon, 24 Mar 2025 13:03:31 GMTserver: LiteSpeedlocation: https://followafter.net/x-turbo-charged-by: LiteSpeed !DOCTYPE html>html styleheight:100%>head>meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno />title> 301 Moved Permanently/title>style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}/style>/head>body stylecolor: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;>div styleheight:auto; min-height:100%; > div styletext-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;> h1 stylemargin:0; font-size:150px; line-height:150px; font-weight:bold;>301/h1>h2 stylemargin-top:20px;font-size: 30px;>Moved Permanently/h2>p>The document has been permanently moved./p>/div>/div>/body>/html>
Port 443
HTTP/1.1 200 OKkeep-alive: timeout5, max100x-powered-by: PHP/7.4.33content-type: text/html; charsetUTF-8link: https://followafter.net/wp-json/>; relhttps://api.w.org/link: https://followafter.net/wp-json/wp/v2/pages/3>; relalternate; typeapplication/jsonlink: https://followafter.net/>; relshortlinketag: 13-1742270917;;;x-litespeed-cache: hittransfer-encoding: chunkeddate: Mon, 24 Mar 2025 13:03:32 GMTserver: LiteSpeedx-turbo-charged-by: LiteSpeed !DOCTYPE html>html langen-US>head>meta charsetUTF-8>meta nameviewport contentwidthdevice-width, initial-scale1.0>link relprofile hrefhttps://gmpg.org/xfn/11>title>Follow After Ministries/title>meta namerobots contentmax-image-preview:large />link reldns-prefetch href//fonts.googleapis.com />link relalternate typeapplication/rss+xml titleFollow After Ministries » Feed hrefhttps://followafter.net/feed/ />link relalternate typeapplication/rss+xml titleFollow After Ministries » Comments Feed hrefhttps://followafter.net/comments/feed/ />link relalternate typeapplication/rss+xml titleFollow After Ministries » Home Comments Feed hrefhttps://followafter.net/home/feed/ />script typetext/javascript>/* !CDATA */window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/followafter.net\/wp-includes\/js\/wp-emoji.js?ver6.4.5,twemoji:https:\/\/followafter.net\/wp-includes\/js\/twemoji.js?ver6.4.5}};/** * @output wp-includes/js/wp-emoji-loader.js *//** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback *//** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji *//** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise undefined ) { return; } var sessionStorageKey wpEmojiSettingsSupports; var tests flag, emoji ; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker ! undefined && typeof OffscreenCanvas ! undefined && typeof URL ! undefined && URL.createObjectURL && typeof Blob ! undefined ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item object && typeof item.timestamp number && new Date().valueOf() item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests object ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data rendered2 index ; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of flag or emoji. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case flag: /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (white flag emoji + transgender symbol). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F, // as a zero-width joiner sequence \uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (U + N). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDDFA\uD83C\uDDF3, // as the sequence of two code points \uD83C\uDDFA\u200B\uD83C\uDDF3 // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (black flag emoji + G + B + E + N + G). */ isIdentical emojiSetsRenderIdentically( context, // as the flag sequence \uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F, // with each code point separated by a zero-width space \uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F ); return ! isIdentical; case emoji: /* * Why cant we be friends? Everyone can now shake hands in emoji, regardless of skin tone! * * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone. * * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand, * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone. * * 0x1FAF1 Rightwards Hand * 0x1F3FB Light Skin Tone * 0x200D Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x1FAF2 Leftwards Hand * 0x1F3FF Dark Skin Tone. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical emojiSetsRenderIdentically( context, \uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF, // as the zero-width joiner sequence \uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope ! undefined && self instanceof WorkerGlobalScope ) { canvas new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas document.createElement( canvas ); } var context canvas.getContext( 2d, { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesnt work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline top; context.font 600 32px Arial; var supports {}; tests.forEach( function ( test ) { supports test browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script document.createElement( script ); script.src src; script.defer true; document.head.appendChild( script ); } settings.supports { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise new Promise( function ( resolve ) { document.addEventListener( DOMContentLoaded, resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript postMessage( + testEmojiSupports.toString() + ( + JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() .join( , ) + ));; var blob new Blob( workerScript , { type: text/javascript } ); var worker new Worker( URL.createObjectURL( blob ), { name: wpTestEmojiSupports } ); worker.onmessage function ( event ) { supportTests event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports test supportTests test ; settings.supports.everything settings.supports.everything && settings.supports test ; if ( flag ! test ) { settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && settings.supports test ; } } settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady false; settings.readyCallback function () { settings.DOMReady true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } );} )( window, document, window._wpemojiSettings );/* > *//script>link relstylesheet idjquery.prettyphoto-css hrefhttps://followafter.net/wp-content/plugins/wp-video-lightbox/css/prettyPhoto.css?ver6.4.5 typetext/css mediaall />link relstylesheet idvideo-lightbox-css hrefhttps://followafter.net/wp-content/plugins/wp-video-lightbox/wp-video-lightbox.css?ver6.4.5 typetext/css mediaall />style idwp-emoji-styles-inline-css typetext/css> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; }/style>link relstylesheet idwp-block-library-css hrefhttps://followafter.net/wp-includes/css/dist/block-library/style.css?ver6.4.5 typetext/css mediaall />style idclassic-theme-styles-inline-css typetext/css>/** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */.wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it wont override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em;}.wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none;}/style>style idglobal-styles-inline-css typetext/css>body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}/style>link relstylesheet idcontact-form-7-css hrefhttps://followafter.net/wp-content/plugins/contact-form-7/includes/css/styles.css?ver5.9.3 typetext/css mediaall />link relstylesheet idwidgetopts-styles-css hrefhttps://followafter.net/wp-content/plugins/widget-options/assets/css/widget-options.css typetext/css mediaall />link relstylesheet idivory-search-styles-css hrefhttps://followafter.net/wp-content/plugins/add-search-to-menu/public/css/ivory-search.min.css?ver5.5.5 typetext/css mediaall />link relstylesheet idparent-style-css hrefhttps://followafter.net/wp-content/themes/amphibious/style.css?ver6.4.5 typetext/css mediaall />link relstylesheet idamphibious-bootstrap-grid-css hrefhttps://followafter.net/wp-content/themes/amphibious/css/bootstrap-grid.css?ver6.4.5 typetext/css mediaall />link relstylesheet idfont-awesome-5-css hrefhttps://followafter.net/wp-content/themes/amphibious/css/fontawesome-all.css?ver6.4.5 typetext/css mediaall />link relstylesheet idamphibious-fonts-css hrefhttps://fonts.googleapis.com/css?familyPoppins%3A400%2C400i%2C700%2C700i%7CRubik%3A400%2C400i%2C700%2C700i&subsetlatin%2Clatin-ext typetext/css mediaall />link relstylesheet idamphibious-style-css hrefhttps://followafter.net/wp-content/themes/amphibious-child/style.css?ver6.4.5 typetext/css mediaall />style idamphibious-style-inline-css typetext/css>.blog .cat-links,.archive .cat-links,.search .cat-links,.archive-title-control,.credits-designer { clip: rect(1px, 1px, 1px, 1px); position: absolute; }/style>script typetext/javascript srchttps://followafter.net/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script typetext/javascript srchttps://followafter.net/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/plugins/wp-video-lightbox/js/jquery.prettyPhoto.js?ver3.1.6 idjquery.prettyphoto-js>/script>script typetext/javascript idvideo-lightbox-js-extra>/* !CDATA */var vlpp_vars {prettyPhoto_rel:wp-video-lightbox,animation_speed:fast,slideshow:5000,autoplay_slideshow:false,opacity:0.80,show_title:true,allow_resize:true,allow_expand:true,default_width:640,default_height:480,counter_separator_label:\/,theme:pp_default,horizontal_padding:20,hideflash:false,wmode:opaque,autoplay:false,modal:false,deeplinking:false,overlay_gallery:true,overlay_gallery_max:30,keyboard_shortcuts:true,ie6_fallback:true};/* > *//script>script typetext/javascript srchttps://followafter.net/wp-content/plugins/wp-video-lightbox/js/video-lightbox.js?ver3.1.6 idvideo-lightbox-js>/script>link relhttps://api.w.org/ hrefhttps://followafter.net/wp-json/ />link relalternate typeapplication/json hrefhttps://followafter.net/wp-json/wp/v2/pages/3 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://followafter.net/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.4.5 />link relcanonical hrefhttps://followafter.net/ />link relshortlink hrefhttps://followafter.net/ />link relalternate typeapplication/json+oembed hrefhttps://followafter.net/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ffollowafter.net%2F />link relalternate typetext/xml+oembed hrefhttps://followafter.net/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Ffollowafter.net%2F&formatxml />style typetext/css mediascreen>.qpp-style.AWordtotheWise {width:100%;max-width:100%; }.qpp-style.AWordtotheWise #plain {border:1px solid #fff;}.qpp-style.AWordtotheWise inputtypetext, .qpp-style.AWordtotheWise textarea, .qpp-style.AWordtotheWise select, .qpp-style.AWordtotheWise #submit, .qpp-style.AWordtotheWise #couponsubmit {border-radius:0;}.qpp-style.AWordtotheWise h2 {font-size: 1.6em; color: #465069;}.qpp-style.AWordtotheWise p, .qpp-style.AWordtotheWise .qpp-p-style, .qpp-style.AWordtotheWise li {margin:4px 0 4px 0;padding:0;font-family: arial, sans-serif; font-size: 1em;color: #465069;line-height:100%;;}.qpp-style.AWordtotheWise inputtypetext, .qpp-style.AWordtotheWise textarea {border: 1px solid #415063;font-family: arial, sans-serif; font-size: 1em; color: #465069;;height:auto;line-height:normal; margin: 2px 0 3px 0;padding: 6px;;}.qpp-style.AWordtotheWise select {border: 1px solid #415063;font-family: arial, sans-serif; font-size: inherit; color: #465069;;height:auto;line-height:normal;}.qpp-style.AWordtotheWise select option {color: #465069;}.qpp-style.AWordtotheWise .qppcontainer input + label, .qpp-style.AWordtotheWise .qppcontainer textarea + label {font-family: arial, sans-serif; font-size: 1em; color: #465069;}.qpp-style.AWordtotheWise inputtypetext.required, .qpp-style.AWordtotheWise textarea.required {border: 1px solid #00C618;}.qpp-style.AWordtotheWise div {background:#FFF;}.qpp-style.AWordtotheWise p.submit {text-align:left;}.qpp-style.AWordtotheWise #submitimage {width:100%;height:auto;overflow:hidden;}.qpp-style.AWordtotheWise #submit, .qpp-style.AWordtotheWise #submitimage {width:100%;color:#FFF;background:#343838;border:1px solid #415063;font-family: arial, sans-serif;font-size: inherit;text-align:center;}.qpp-style.AWordtotheWise #submit:hover {background:#888888;}.qpp-style.AWordtotheWise #couponsubmit, .qpp-style.AWordtotheWise #couponsubmit:hover{width:100%;color:#FFF;background:#1f8416;border:1px solid #415063;font-family: arial, sans-serif;font-size: inherit;margin: 3px 0px 7px;padding: 6px;text-align:center;}.qpp-style.AWordtotheWise input#qpptotal {color:#465069;font-weight:bold;font-size:inherit;padding: 0;margin-left:3px;border:none;background:#FFF}.qpp-style.default {width:280px;max-width:100%; }.qpp-style.default #plain {border:1px solid #415063;}.qpp-style.default inputtypetext, .qpp-style.default textarea, .qpp-style.default select, .qpp-style.default #submit, .qpp-style.default #couponsubmit {border-radius:0;}.qpp-style.default h2 {font-size: 1.6em; color: #465069;}.qpp-style.default p, .qpp-style.default .qpp-p-style, .qpp-style.default li {margin:4px 0 4px 0;padding:0;font-family: arial, sans-serif; font-size: 1em;color: #465069;line-height:100%;;}.qpp-style.default inputtypetext, .qpp-style.default textarea {border: 1px solid #415063;font-family: arial, sans-serif; font-size: 1em; color: #465069;;height:auto;line-height:normal; margin: 2px 0 3px 0;padding: 6px;;}.qpp-style.default select {border: 1px solid #415063;font-family: arial, sans-serif; font-size: inherit; color: #465069;;height:auto;line-height:normal;}.qpp-style.default select option {color: #465069;}.qpp-style.default .qppcontainer input + label, .qpp-style.default .qppcontainer textarea + label {font-family: arial, sans-serif; font-size: 1em; color: #465069;}.qpp-style.default inputtypetext.required, .qpp-style.default textarea.required {border: 1px solid #00C618;}.qpp-style.default div {background:#FFF;}.qpp-style.default p.submit {text-align:left;}.qpp-style.default #submitimage {width:100%;height:auto;overflow:hidden;}.qpp-style.default #submit, .qpp-style.default #submitimage {width:100%;color:#FFF;background:#343838;border:1px solid #415063;font-family: arial, sans-serif;font-size: inherit;text-align:center;}.qpp-style.default #submit:hover {background:#888888;}.qpp-style.default #couponsubmit, .qpp-style.default #couponsubmit:hover{width:100%;color:#FFF;background:#1f8416;border:1px solid #415063;font-family: arial, sans-serif;font-size: inherit;margin: 3px 0px 7px;padding: 6px;text-align:center;}.qpp-style.default input#qpptotal {color:#465069;font-weight:bold;font-size:inherit;padding: 0;margin-left:3px;border:none;background:#FFF}/style>script languageJavaScript typetext/javascript>!--function expand(param) { jQuery(div+param).stop().slideToggle(function() { /*linkname jQuery(a+param).html();*/ if( jQuery(div+param).is(:visible) ) { jQuery(a+param+ > span).html(expand_text); } else { jQuery(a+param+ > span).html(collapse_text); } });}function expander_hide(param) { // hide original div jQuery(div+param).hide(); linkname jQuery(a+param).html(); collapse_text ⇓; expand_text ⇑; jQuery(a+param).html(linkname).prepend(span class\collapse-pre\>+collapse_text+/span>); jQuery(a+param).show();}//-->/script>script> WP_VIDEO_LIGHTBOX_VERSION1.9.10; WP_VID_LIGHTBOX_URLhttps://followafter.net/wp-content/plugins/wp-video-lightbox; function wpvl_paramReplace(name, string, value) { // Find the param with regex // Grab the first character in the returned string (should be ? or &) // Replace our href string with our new value, passing on the name and delimeter var re new RegExp(\?& + name + (^*)); var matches re.exec(string); var newString; if (matches null) { // if there are no params, append the parameter newString string + ? + name + + value; } else { var delimeter matches0.charAt(0); newString string.replace(re, delimeter + name + + value); } return newString; } /script> style typetext/css> .site-title, .site-description { clip: rect(1px, 1px, 1px, 1px); position: absolute; visibility: hidden; } /style>link relicon hrefhttps://followafter.net/wp-content/uploads/2020/05/cropped-cropped-logo_new-1-32x32.png sizes32x32 />link relicon hrefhttps://followafter.net/wp-content/uploads/2020/05/cropped-cropped-logo_new-1-192x192.png sizes192x192 />link relapple-touch-icon hrefhttps://followafter.net/wp-content/uploads/2020/05/cropped-cropped-logo_new-1-180x180.png />meta namemsapplication-TileImage contenthttps://followafter.net/wp-content/uploads/2020/05/cropped-cropped-logo_new-1-270x270.png /> style typetext/css idwp-custom-css> .site-header{background-color:inherit;padding:0.75rem 0}#masthead {text-align:center}.main-navigation{padding:0.75rem 0 0;}.site-content .site-content-inside{padding:0.75rem 0;}p {text-align:justify}.top-pic img {padding-bottom:6px}.post-wrapper-archive .entry-image-wrapper {margin: 30px 30px 30px 0}.post-wrapper-single .entry-image-wrapper-single {display:none}.no-space{margin-bottom:0}#menu-1 .search-icon { position: relative; top: 4px;}.grecaptcha-badge { opacity:0;} /style> style typetext/css mediascreen>.is-menu path.search-icon-path { fill: #208de5;}body .popup-search-close:after, body .search-close:after { border-color: #208de5;}body .popup-search-close:before, body .search-close:before { border-color: #208de5;}/style>/head>body data-ocssl1 classhome page-template page-template-homepage_template page-template-homepage_template-php page page-id-3 amphibious group-blog has-wide-layout has-right-sidebar>div idpage classsite-wrapper site> a classskip-link screen-reader-text href#content>Skip to content/a> div idmasthead classsite-header>img srchttps://followafter.net/wp-content/uploads/2020/05/banner.png/>/div> div classcontainer> div classrow> div classcol> div classsite-header-inside-wrapper> div classsite-branding-wrapper> div classsite-logo-wrapper>/div> div classsite-branding> p classsite-title>a hrefhttps://followafter.net/ titleFollow After Ministries relhome>Follow After Ministries/a>/p> /div>/div>!-- .site-branding-wrapper -->nav idsite-navigation classmain-navigation> div classmain-navigation-inside> div classtoggle-menu-wrapper> a href#header-menu-responsive titleMenu classtoggle-menu-control> span classtoggle-menu-label>Menu/span> /a> /div> div classsite-header-menu-wrapper site-header-menu-responsive-wrapper>ul idmenu-1 classsite-header-menu site-header-menu-responsive>li idmenu-item-1748 classmenu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1748>a hrefhttps://followafter.net aria-currentpage>Home/a>/li>li idmenu-item-1720 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-1720>a hrefhttps://followafter.net/about/>About/a>/li>li idmenu-item-1699 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1699>a hrefhttps://followafter.net/resources/>Resources/a>/li>li idmenu-item-1717 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1717>a hrefhttps://followafter.net/blog/>Blog/a>/li>li idmenu-item-1718 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1718>a hrefhttps://followafter.net/store/>Store/a>/li>li idmenu-item-1719 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1719>a hrefhttps://followafter.net/contact/>Contact/a>/li>li class astm-search-menu is-menu sliding menu-item>a href# aria-labelSearch Icon Link>svg width20 height20 classsearch-icon roleimg viewBox2 9 20 5 focusablefalse aria-labelSearch> path classsearch-icon-path dM15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z>/path>/svg>/a>form classis-search-form is-form-style is-form-style-3 is-form-id-0 actionhttps://followafter.net/ methodget rolesearch >label foris-search-input-0>span classis-screen-reader-text>Search for:/span>input typesearch idis-search-input-0 names value classis-search-input placeholderSearch here... autocompleteoff />/label>button typesubmit classis-search-submit>span classis-screen-reader-text>Search Button/span>span classis-search-icon>svg focusablefalse aria-labelSearch xmlnshttps://www.w3.org/2000/svg viewBox0 0 24 24 width24px>path dM15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z>/path>/svg>/span>/button>/form>div classsearch-close>/div>/li>/ul>/div> /div>!-- .main-navigation-inside -->/nav>!-- .main-navigation --> /div>!-- .site-header-inside-wrapper --> /div>!-- .col --> /div>!-- .row --> /div>!-- .container -->!-- #masthead --> div idcontent classsite-content> div classsite-content-inside> div classcontainer> div classrow> div idprimary classcontent-area col-16 col-sm-16 col-md-16 col-lg-11 col-xl-11 col-xxl-11> main idmain classsite-main> div idpost-wrapper classpost-wrapper post-wrapper-archive> div classpost-wrapper-hentry> article idpost-2186 classpost-2186 post type-post status-publish format-standard has-post-thumbnail hentry category-blog tag-reading has-post-thumbnail-archive> div classpost-content-wrapper post-content-wrapper-archive> div classentry-image-wrapper>a hrefhttps://followafter.net/blog/top-12-books-of-2024/>figure classpost-thumbnail stylebackground-image: url(https://followafter.net/wp-content/uploads/2022/01/alfons-morales-YLSwjSy7stw-unsplash.jpg);>/figure>/a>/div> div classentry-data-wrapper> div classentry-header-wrapper> div classentry-meta entry-meta-header-before styledisplay:none > span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/top-12-books-of-2024/ relbookmark>time classentry-date published datetime2024-12-31T14:13:42-06:00>December 31, 2024/time>time classupdated datetime2024-12-31T14:13:43-06:00>December 31, 2024/time>/a>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> header classentry-header> h2 classentry-title>a hrefhttps://followafter.net/blog/top-12-books-of-2024/ relbookmark>Top 12 Books of 2024/a>/h2> /header>!-- .entry-header --> div classentry-meta entry-meta-header-after> span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/top-12-books-of-2024/ relbookmark>time classentry-date published datetime2024-12-31T14:13:42-06:00>December 31, 2024/time>time classupdated datetime2024-12-31T14:13:43-06:00>December 31, 2024/time>/a>/span>span classbyline entry-meta-icon>by span classauthor vcard>a classentry-author-link url fn n hrefhttps://followafter.net/blog/author/brandon/ relauthor>span classentry-author-name>brandon/span>/a>/span>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> /div>!-- .entry-header-wrapper --> div classentry-summary> p>Each year I write a short post highlighting the top twelve books I read that year, plus a few honorable mentions. I do this because I want to honor those worthy of honor, and also in the hopes that some of you might see a title or two that interests you. (Those who know me well know I love to get others reading excellent books!) So without further ado, here are the twelve best books…/p> /div>!-- .entry-summary --> div classmore-link-wrapper>a hrefhttps://followafter.net/blog/top-12-books-of-2024/ classmore-link>Read More/a>/div> /div>!-- .entry-data-wrapper --> /div>!-- .post-content-wrapper --> /article>!-- #post-## -->/div>!-- .post-wrapper-hentry --> div classpost-wrapper-hentry> article idpost-2175 classpost-2175 post type-post status-publish format-standard has-post-thumbnail hentry category-blog tag-bible tag-joshua tag-meditation has-post-thumbnail-archive> div classpost-content-wrapper post-content-wrapper-archive> div classentry-image-wrapper>a hrefhttps://followafter.net/blog/be-strong-and-courageous/>figure classpost-thumbnail stylebackground-image: url(https://followafter.net/wp-content/uploads/2024/06/jonathan-kemper-Y5euuAtArhU-unsplash.jpg);>/figure>/a>/div> div classentry-data-wrapper> div classentry-header-wrapper> div classentry-meta entry-meta-header-before styledisplay:none > span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/be-strong-and-courageous/ relbookmark>time classentry-date published datetime2024-06-27T10:37:02-05:00>June 27, 2024/time>time classupdated datetime2024-06-27T10:37:04-05:00>June 27, 2024/time>/a>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> header classentry-header> h2 classentry-title>a hrefhttps://followafter.net/blog/be-strong-and-courageous/ relbookmark>Be Strong and Courageous?/a>/h2> /header>!-- .entry-header --> div classentry-meta entry-meta-header-after> span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/be-strong-and-courageous/ relbookmark>time classentry-date published datetime2024-06-27T10:37:02-05:00>June 27, 2024/time>time classupdated datetime2024-06-27T10:37:04-05:00>June 27, 2024/time>/a>/span>span classbyline entry-meta-icon>by span classauthor vcard>a classentry-author-link url fn n hrefhttps://followafter.net/blog/author/brandon/ relauthor>span classentry-author-name>brandon/span>/a>/span>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> /div>!-- .entry-header-wrapper --> div classentry-summary> p>“As I was with Moses, so I will be with you; I will never leave you nor forsake you. Be strong and courageous, because you will lead these people to inherit the land I swore to their ancestors to give them. Be strong and very courageous. Be careful to obey all the law my servant Moses gave you; do not turn from it to the right or to the left, that you may be successful wherever you go. Keep this Book of the Law always…/p> /div>!-- .entry-summary --> div classmore-link-wrapper>a hrefhttps://followafter.net/blog/be-strong-and-courageous/ classmore-link>Read More/a>/div> /div>!-- .entry-data-wrapper --> /div>!-- .post-content-wrapper --> /article>!-- #post-## -->/div>!-- .post-wrapper-hentry --> div classpost-wrapper-hentry> article idpost-2166 classpost-2166 post type-post status-publish format-standard has-post-thumbnail hentry category-blog tag-meditation tag-prayer tag-suffering has-post-thumbnail-archive> div classpost-content-wrapper post-content-wrapper-archive> div classentry-image-wrapper>a hrefhttps://followafter.net/blog/to-this-i-will-appeal/>figure classpost-thumbnail stylebackground-image: url(https://followafter.net/wp-content/uploads/2024/04/fa-barboza-yykbf9LiS50-unsplash-1.jpg);>/figure>/a>/div> div classentry-data-wrapper> div classentry-header-wrapper> div classentry-meta entry-meta-header-before styledisplay:none > span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/to-this-i-will-appeal/ relbookmark>time classentry-date published datetime2024-04-25T09:53:13-05:00>April 25, 2024/time>time classupdated datetime2024-04-25T09:53:14-05:00>April 25, 2024/time>/a>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> header classentry-header> h2 classentry-title>a hrefhttps://followafter.net/blog/to-this-i-will-appeal/ relbookmark>To This I Will Appeal/a>/h2> /header>!-- .entry-header --> div classentry-meta entry-meta-header-after> span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/to-this-i-will-appeal/ relbookmark>time classentry-date published datetime2024-04-25T09:53:13-05:00>April 25, 2024/time>time classupdated datetime2024-04-25T09:53:14-05:00>April 25, 2024/time>/a>/span>span classbyline entry-meta-icon>by span classauthor vcard>a classentry-author-link url fn n hrefhttps://followafter.net/blog/author/brandon/ relauthor>span classentry-author-name>brandon/span>/a>/span>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> /div>!-- .entry-header-wrapper --> div classentry-summary> p>My heart meditated and my spirit asked: “Will the Lord reject forever? Will he never show his favor again? Has his unfailing love vanished forever? Has his promise failed for all time? Has God forgotten to be merciful? Has he in anger withheld his compassion?” Then I thought, “To this I will appeal: the years when the Most High stretched out his right hand. I will remember the deeds of the Lord; yes, I will remember your miracles of long ago. I will consider all…/p> /div>!-- .entry-summary --> div classmore-link-wrapper>a hrefhttps://followafter.net/blog/to-this-i-will-appeal/ classmore-link>Read More/a>/div> /div>!-- .entry-data-wrapper --> /div>!-- .post-content-wrapper --> /article>!-- #post-## -->/div>!-- .post-wrapper-hentry --> div classpost-wrapper-hentry> article idpost-2146 classpost-2146 post type-post status-publish format-standard has-post-thumbnail hentry category-blog tag-reading has-post-thumbnail-archive> div classpost-content-wrapper post-content-wrapper-archive> div classentry-image-wrapper>a hrefhttps://followafter.net/blog/top-12-books-of-2023/>figure classpost-thumbnail stylebackground-image: url(https://followafter.net/wp-content/uploads/2022/01/alfons-morales-YLSwjSy7stw-unsplash.jpg);>/figure>/a>/div> div classentry-data-wrapper> div classentry-header-wrapper> div classentry-meta entry-meta-header-before styledisplay:none > span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/top-12-books-of-2023/ relbookmark>time classentry-date published updated datetime2024-01-01T10:09:39-06:00>January 1, 2024/time>/a>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> header classentry-header> h2 classentry-title>a hrefhttps://followafter.net/blog/top-12-books-of-2023/ relbookmark>Top 12 Books of 2023/a>/h2> /header>!-- .entry-header --> div classentry-meta entry-meta-header-after> span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/top-12-books-of-2023/ relbookmark>time classentry-date published updated datetime2024-01-01T10:09:39-06:00>January 1, 2024/time>/a>/span>span classbyline entry-meta-icon>by span classauthor vcard>a classentry-author-link url fn n hrefhttps://followafter.net/blog/author/brandon/ relauthor>span classentry-author-name>brandon/span>/a>/span>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> /div>!-- .entry-header-wrapper --> div classentry-summary> p>Each year I write a short post highlighting the top ten books I read that year, plus a few honorable mentions. (I read more books than ever this year—many quite excellent—so I’ve had to bump it up to a top 12.) I do this because I want to honor those worthy of honor, and also in the hopes that some of you might see a title or two that interests you. (Those who know me…/p> /div>!-- .entry-summary --> div classmore-link-wrapper>a hrefhttps://followafter.net/blog/top-12-books-of-2023/ classmore-link>Read More/a>/div> /div>!-- .entry-data-wrapper --> /div>!-- .post-content-wrapper --> /article>!-- #post-## -->/div>!-- .post-wrapper-hentry --> div classpost-wrapper-hentry> article idpost-2143 classpost-2143 post type-post status-publish format-standard has-post-thumbnail hentry category-blog tag-bible tag-prayer tag-spiritual-disciplines has-post-thumbnail-archive> div classpost-content-wrapper post-content-wrapper-archive> div classentry-image-wrapper>a hrefhttps://followafter.net/blog/starting-the-new-year-well/>figure classpost-thumbnail stylebackground-image: url(https://followafter.net/wp-content/uploads/2023/12/rachel-strong-VhcxuEGNXo4-unsplash.jpg);>/figure>/a>/div> div classentry-data-wrapper> div classentry-header-wrapper> div classentry-meta entry-meta-header-before styledisplay:none > span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/starting-the-new-year-well/ relbookmark>time classentry-date published updated datetime2023-12-28T09:39:27-06:00>December 28, 2023/time>/a>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> header classentry-header> h2 classentry-title>a hrefhttps://followafter.net/blog/starting-the-new-year-well/ relbookmark>Starting the New Year Well/a>/h2> /header>!-- .entry-header --> div classentry-meta entry-meta-header-after> span classposted-on entry-meta-icon>span classscreen-reader-text>Posted on/span>a hrefhttps://followafter.net/blog/starting-the-new-year-well/ relbookmark>time classentry-date published updated datetime2023-12-28T09:39:27-06:00>December 28, 2023/time>/a>/span>span classbyline entry-meta-icon>by span classauthor vcard>a classentry-author-link url fn n hrefhttps://followafter.net/blog/author/brandon/ relauthor>span classentry-author-name>brandon/span>/a>/span>/span>span classpost-category cat-links entry-meta-icon>a hrefhttps://followafter.net/blog/category/blog/ titleBlog>Blog/a>/span> /div>!-- .entry-meta --> /div>!-- .entry-header-wrapper --> div classentry-summary> p>As the new year rolls in, we would be wise to plan for the coming year. We accomplish few things of lasting value without having planned for them in advance. This is true for our spiritual journey. Now, at the start of the year, is the time to plan for how we will encounter God in his Word for the next twelve months. Ordinarily, I write about the value of reading through the Bible in…/p> /div>!-- .entry-summary --> div classmore-link-wrapper>a hrefhttps://followafter.net/blog/starting-the-new-year-well/ classmore-link>Read More/a>/div> /div>!-- .entry-data-wrapper --> /div>!-- .post-content-wrapper --> /article>!-- #post-## -->/div>!-- .post-wrapper-hentry --> /div>!-- .post-wrapper --> /main>!-- #main --> /div>!-- #primary --> div idsite-sidebar classsidebar-area col-16 col-sm-16 col-md-16 col-lg-5 col-xl-5 col-xxl-5> div idsecondary classsidebar widget-area sidebar-widget-area rolecomplementary> aside idcustom_html-2 classwidget_text widget widget_custom_html>div classtextwidget custom-html-widget>center>a styletext-align:left hrefhttps://followafter.net/store>Purchase em>A Word to the Wise/em>/a>br>a hrefhttps://followafter.net/store>img alignmiddle src/images/book.jpg altA Word to the Wise width97 height150/>/a>/center>/div>/aside>aside idcustom_html-4 classwidget_text widget widget_custom_html>div classtextwidget custom-html-widget>div styletext-align:center classtop-pic> img srchttps://followafter.net/wp-content/uploads/2020/05/deny.jpg classimage wp-image-1871 attachment-full size-full altDeny stylemax-width: 100%; height: auto; srcsethttps://followafter.net/wp-content/uploads/2020/05/deny.jpg 325w, https://followafter.net/wp-content/uploads/2020/05/deny-300x169.jpg 300w sizes(max-width: 325px) 100vw, 325px width325 height183>/div>div styletext-align:center classtop-pic> img srchttps://followafter.net/wp-content/uploads/2020/05/take.jpg classimage wp-image-1872 attachment-full size-full altTake Up Your Cross stylemax-width: 100%; height: auto; srcsethttps://followafter.net/wp-content/uploads/2020/05/take.jpg 325w, https://followafter.net/wp-content/uploads/2020/05/take-300x169.jpg 300w sizes(max-width: 325px) 100vw, 325px width325 height183>/div>div styletext-align:center> img srchttps://followafter.net/wp-content/uploads/2020/05/follow.jpg classimage wp-image-1873 attachment-full size-full altFollow After Me stylemax-width: 100%; height: auto; srcsethttps://followafter.net/wp-content/uploads/2020/05/follow.jpg 670w, https://followafter.net/wp-content/uploads/2020/05/follow-300x127.jpg 300w sizes(max-width: 325px) 100vw, 325px width325 height183>/div>/div>/aside> /div>!-- .sidebar -->/div>!-- .col-* columns of main sidebar --> /div>!-- .row --> /div>!-- .container --> /div>!-- .site-content-inside --> /div>!-- #content --> footer idcolophon classsite-footer> div classsite-info> div classsite-info-inside> div classcontainer> div classrow> div classcol> div classcredits-wrapper> div classcredits credits-blog>Copyright 2020 | Follow After Ministries/div>div classcredits credits-designer>Amphibious Theme by a hrefhttps://templatepocket.com titleTemplatePocket>TemplatePocket/a> span>⋅/span> Powered by a hrefhttps://wordpress.org titleWordPress>WordPress/a>/div> /div>!-- .credits --> /div>!-- .col --> /div>!-- .row --> /div>!-- .container --> /div>!-- .site-info-inside -->/div>!-- .site-info --> /footer>!-- #colophon -->/div>!-- #page .site-wrapper -->div classoverlay-effect>/div>!-- .overlay-effect -->style idcore-block-supports-inline-css typetext/css>/** * Core styles: block-supports *//style>script typetext/javascript srchttps://followafter.net/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver5.9.3 idswv-js>/script>script typetext/javascript idcontact-form-7-js-extra>/* !CDATA */var wpcf7 {api:{root:https:\/\/followafter.net\/wp-json\/,namespace:contact-form-7\/v1},cached:1};/* > *//script>script typetext/javascript srchttps://followafter.net/wp-content/plugins/contact-form-7/includes/js/index.js?ver5.9.3 idcontact-form-7-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/themes/amphibious/js/enquire.js?ver2.1.6 idenquire-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/themes/amphibious/js/fitvids.js?ver1.1 idfitvids-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/themes/amphibious/js/hover-intent.js?verr7 idhover-intent-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/themes/amphibious/js/superfish.js?ver1.7.10 idsuperfish-js>/script>script typetext/javascript srchttps://followafter.net/wp-content/themes/amphibious/js/custom.js?ver1.0 idamphibious-custom-js>/script>script typetext/javascript srchttps://www.google.com/recaptcha/api.js?render6LfFeRAjAAAAALgKhXMFqd5uN9meFfZkKr3Zjjis&ver3.0 idgoogle-recaptcha-js>/script>script typetext/javascript srchttps://followafter.net/wp-includes/js/dist/vendor/wp-polyfill-inert.js?ver3.1.2 idwp-polyfill-inert-js>/script>script typetext/javascript srchttps://followafter.net/wp-includes/js/dist/vendor/regenerator-runtime.js?ver0.14.0 idregenerator-runtime-js>/script>script typetext/javascript srchttps://followafter.net/wp-includes/js/dist/vendor/wp-polyfill.js?ver3.15.0 idwp-polyfill-js>/script>script typetext/javascript idwpcf7-recaptcha-js-extra>/* !CDATA */var wpcf7_recaptcha {sitekey:6LfFeRAjAAAAALgKhXMFqd5uN9meFfZkKr3Zjjis,actions:{homepage:homepage,contactform:contactform}};/* > *//script>script typetext/javascript srchttps://followafter.net/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver5.9.3 idwpcf7-recaptcha-js>/script>script typetext/javascript idivory-search-scripts-js-extra>/* !CDATA */var IvorySearchVars {is_analytics_enabled:1};/* > *//script>script typetext/javascript srchttps://followafter.net/wp-content/plugins/add-search-to-menu/public/js/ivory-search.min.js?ver5.5.5 idivory-search-scripts-js>/script>/body>/html>!-- Page cached by LiteSpeed Cache 6.5.4 on 2025-03-17 23:08:37 -->
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]