<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
const isMobileDevice = () => {
const mediaQuery = window.matchMedia('(max-width: 768px)')
return mediaQuery.matches
}
window.currentSlide = 0
window.isDevice = isMobileDevice()
window.XD = {
site: {},
content: {}
}
</script>
<title>Home - theaustinsf</title>
<link rel="icon" href="https://cdn.theaustinsf.com/settings/image/logofavicon-173978550265971345.jpeg">
<meta name="description" content="theaustinsf">
<meta property="og:title" content="Home">
<meta property="og:description" content="theaustinsf">
<meta property="og:image" content="">
<meta property="og:type" content="article">
<meta property="og:url" content="https://theaustinsf.com/">
<meta name="category" content="">
<meta name="author" content="theaustinsf">
<link rel="preload" as="script" id="googletagservices-css" href="https://www.googletagservices.com/tag/js/gpt.js" media="all" />
<script type="text/javascript">
window.ATCloudMapping = []
window.ATExtraLazyUnits = []
window.ATDevice = window.isDevice ? 'mobile-unit' : 'desktop-unit'
window.ATSize = window.isDevice ? '300x250' : '728x90'
window.ATPlacements = [
'desktop-left-sidebar-1',
'desktop-left-sidebar-2',
'desktop-right-sidebar-1',
'desktop-right-sidebar-2',
'desktop-before-heading-1',
'desktop-after-heading-1',
'desktop-before-image-1',
'desktop-after-image-1',
'desktop-before-button-1',
'desktop-before-button-2',
'desktop-after-button-1',
'desktop-after-button-2',
'desktop-footer',
'mobile-before-heading-1',
'mobile-after-heading-1',
'mobile-before-image-1',
'mobile-after-image-1',
'mobile-before-button-1',
'mobile-after-button-1',
'mobile-footer',
'prebid-adhesion-desktop',
'prebid-adhesion-mobile',
'300x250',
'300x600',
'320x50'
]
window.ATSlots = {
'desktop': {
'728x90': ['pb-slot-incontent-1', false],
'300x250': ['pb-slot-right-1', false],
'300x600': ['pb-slot-right-2', false],
'320x50': ['pb-slot-incontent-2', false]
},
'mobile': {
'728x90': ['pb-slot-incontent-1', false],
'300x250': ['pb-slot-incontent-1', false],
'300x600': ['pb-slot-incontent-large', false],
'320x50': ['pb-slot-incontent-2', false]
}
}
window.ATSlotMapping = {}
window.ATPlacements.forEach(placement => {
if (placement.includes('desktop-')) {
window.ATSlotMapping[placement] = structuredClone(window.ATSlots['desktop'])
} else {
window.ATSlotMapping[placement] = structuredClone(window.ATSlots['mobile'])
}
})
window.ATSlotMapping['prebid-adhesion-desktop'] = {
'728x90': ['pb-slot-anchor', false]
}
window.ATSlotMapping['prebid-adhesion-mobile'] = {
'320x50': ['pb-slot-anchor', false]
}
</script>
<script src="https://hk8PvKuufY4FWCbbY.ay.delivery/manager/hk8PvKuufY4FWCbbY" type="text/javascript" referrerpolicy="no-referrer-when-downgrade"></script>
<!-- InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<script type="text/javascript" async=true>
(function() {
var host = window.location.hostname;
var element = document.createElement('script');
var firstScript = document.getElementsByTagName('script')[0];
var url = 'https://cmp.inmobi.com'
.concat('/choice/', 'KCKZrm3nZDDfQ', '/', host, '/choice.js?tag_version=V3');
var uspTries = 0;
var uspTriesLimit = 3;
element.async = true;
element.type = 'text/javascript';
element.src = url;
firstScript.parentNode.insertBefore(element, firstScript);
function makeStub() {
var TCF_LOCATOR_NAME = '__tcfapiLocator';
var queue = [];
var win = window;
var cmpFrame;
function addFrame() {
var doc = win.document;
var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);
if (!otherCMP) {
if (doc.body) {
var iframe = doc.createElement('iframe');
iframe.style.cssText = 'display:none';
iframe.name = TCF_LOCATOR_NAME;
doc.body.appendChild(iframe);
} else {
setTimeout(addFrame, 5);
}
}
return !otherCMP;
}
function tcfAPIHandler() {
var gdprApplies;
var args = arguments;
if (!args.length) {
return queue;
} else if (args[0] === 'setGdprApplies') {
if (
args.length > 3 &&
args[2] === 2 &&
typeof args[3] === 'boolean'
) {
gdprApplies = args[3];
if (typeof args[2] === 'function') {
args[2]('set', true);
}
}
} else if (args[0] === 'ping') {
var retr = {
gdprApplies: gdprApplies,
cmpLoaded: false,
cmpStatus: 'stub'
};
if (typeof args[2] === 'function') {
args[2](retr);
}
} else {
if(args[0] === 'init' && typeof args[3] === 'object') {
args[3] = Object.assign(args[3], { tag_version: 'V3' });
}
queue.push(args);
}
}
function postMessageEventHandler(event) {
var msgIsString = typeof event.data === 'string';
var json = {};
try {
if (msgIsString) {
json = JSON.parse(event.data);
} else {
json = event.data;
}
} catch (ignore) {}
var payload = json.__tcfapiCall;
if (payload) {
window.__tcfapi(
payload.command,
payload.version,
function(retValue, success) {
var returnMsg = {
__tcfapiReturn: {
returnValue: retValue,
success: success,
callId: payload.callId
}
};
if (msgIsString) {
returnMsg = JSON.stringify(returnMsg);
}
if (event && event.source && event.source.postMessage) {
event.source.postMessage(returnMsg, '*');
}
},
payload.parameter
);
}
}
while (win) {
try {
if (win.frames[TCF_LOCATOR_NAME]) {
cmpFrame = win;
break;
}
} catch (ignore) {}
if (win === window.top) {
break;
}
win = win.parent;
}
if (!cmpFrame) {
addFrame();
win.__tcfapi = tcfAPIHandler;
win.addEventListener('message', postMessageEventHandler, false);
}
};
makeStub();
var uspStubFunction = function() {
var arg = arguments;
if (typeof window.__uspapi !== uspStubFunction) {
setTimeout(function() {
if (typeof window.__uspapi !== 'undefined') {
window.__uspapi.apply(window.__uspapi, arg);
}
}, 500);
}
};
var checkIfUspIsReady = function() {
uspTries++;
if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
console.warn('USP is not accessible');
} else {
clearInterval(uspInterval);
}
};
if (typeof window.__uspapi === 'undefined') {
window.__uspapi = uspStubFunction;
var uspInterval = setInterval(checkIfUspIsReady, 6000);
}
})();
</script>
<!-- End InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<script>
let bpltdRPSEvents = {
'RPS2': false,
'RPS4': false,
'RPS5': false,
'RPS6': false,
'RPS8': false,
'RPS10': false,
'RPS12': false,
'RPS15': false
};
var ay_ads_count = 0;
addEventListener(
'assertive_predictedRevenue',
function(e) {
let sessionValue = e.data.predictedRevenueCPM.session;
let contentId = window.location.href.replace('https://www.theaustinsf.com', '');
contentId = window.location.href.replace('https://theaustinsf.com', '');
ay_ads_count++;
if (sessionValue >= 20 && !bpltdRPSEvents.RPS2) {
fbq('trackCustom', 'AYRPS2');
bpltdRPSEvents.RPS2 = true;
} else if (sessionValue >= 40 && !bpltdRPSEvents.RPS4) {
fbq('trackCustom', 'AYRPS4');
bpltdRPSEvents.RPS4 = true;
} else if (sessionValue >= 50 && !bpltdRPSEvents.RPS5) {
fbq('trackCustom', 'AYRPS5');
bpltdRPSEvents.RPS5 = true;
} else if (sessionValue >= 60 && !bpltdRPSEvents.RPS6) {
fbq('trackCustom', 'AYRPS6');
bpltdRPSEvents.RPS6 = true;
} else if (sessionValue >= 80 && !bpltdRPSEvents.RPS8) {
fbq('trackCustom', 'AYRPS8');
bpltdRPSEvents.RPS8 = true;
} else if (sessionValue >= 100 && !bpltdRPSEvents.RPS10) {
fbq('trackCustom', 'AYRPS10');
bpltdRPSEvents.RPS10 = true;
} else if (sessionValue >= 120 && !bpltdRPSEvents.RPS12) {
fbq('trackCustom', 'AYRPS12');
bpltdRPSEvents.RPS12 = true;
} else if (sessionValue >= 150 && !bpltdRPSEvents.RPS15) {
fbq('trackCustom', 'AYRPS15');
bpltdRPSEvents.RPS15 = true;
}
},
false
);
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Home - theaustinsf",
"image": "",
"description": "theaustinsf",
"author": {
"@type": "Organization",
"name": "theaustinsf"
},
"publisher": {
"@type": "Organization",
"name": "theaustinsf",
"logo": {
"@type": "ImageObject",
"url": "https://cdn.theaustinsf.com/settings/image/logosite-173978548129433438.jpeg"
}
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://theaustinsf.com/"
},
"url": "https://theaustinsf.com/",
"articleSection": "",
"isPartOf": {
"@type": "CreativeWork",
"name": "Home - theaustinsf",
"description": "theaustinsf"
},
"potentialAction": {
"@type": "ReadAction",
"target": [
"https://theaustinsf.com/"
]
}
}
</script>
<script type="module" crossorigin src="/assets/index-e00bd283.js"></script>
<link rel="stylesheet" href="/assets/index-950f748f.css">
<style>
.longform h1 { font-size: 1.875rem; font-weight: 800; line-height: 2.25rem; letter-spacing: -.025em; }.longform h2 { font-size: 1.5rem; font-weight: 700; line-height: 2rem; letter-spacing: 0; }.longform .intro p, .longform .slide p { font-size: 1.25rem; font-weight: 400; line-height: 2rem; letter-spacing: 0; }.gallery h1 { font-size: 1.875rem; font-weight: 800; line-height: 2.25rem; letter-spacing: -.025em; }.gallery h2 { font-size: 1.5rem; font-weight: 700; line-height: 2rem; letter-spacing: 0; }.gallery .intro p, .gallery .slide p { font-size: 1.25rem; font-weight: 400; line-height: 2.25rem; letter-spacing: 0; }.next-slide { font-size: 1.5rem; font-weight: 800; line-height: 2rem; letter-spacing: 0; }.block-cat-three h1 { font-size: 1.875rem; font-weight: 800; line-height: 2.25rem; letter-spacing: -.025em; }.block-latest .holder .box h1, .block-cat-one .holder .box h1 { font-size: 1.875rem; font-weight: 800; line-height: 2.25rem; letter-spacing: -.025em; }.block-cat-three h3, .block-cat-four h3 { font-size: 1.5rem; font-weight: 800; line-height: 2rem; letter-spacing: -.025em; }.block-cat-one .holder .box p { font-size: 1.25rem; font-weight: 400; line-height: 2rem; letter-spacing: 0; }.block-latest .holder, .block-latest .holder .box, .block-cat-one .holder .image, .block-cat-three .holder .image, .block-cat-four .holder .image { border-top-left-radius: 25px; border-bottom-right-radius: 25px }.search input, .search .search-icon-bottom { border-top-left-radius: 15px; border-bottom-right-radius: 15px }.read-more, .read-more-alt { border-top-left-radius: 15px; border-bottom-right-radius: 15px }.next-slide { background: #efa70b; }.next-slide:hover { background: #efaf0b; } @media (min-width: 768px) {.longform h1 { font-size: 2.25rem; font-weight: 800; line-height: 2.5rem; letter-spacing: -.025em; }.longform h2 { font-size: 1.875rem; font-weight: 700; line-height: 2.25rem; letter-spacing: 0; }.longform .intro p, .longform .slide p { font-size: 1.25rem; font-weight: 400; line-height: 2.25rem; letter-spacing: 0; }.gallery h1 { font-size: 2.25rem; font-weight: 800; line-height: 2.5rem; letter-spacing: -.025em; }.gallery h2 { font-size: 1.875rem; font-weight: 700; line-height: 2.25rem; letter-spacing: 0; }.gallery .intro p, .gallery .slide p { font-size: 1.25rem; font-weight: 400; line-height: 2.25rem; letter-spacing: 0; }.next-slide { font-size: 1.875rem; font-weight: 800; line-height: 2.25rem; letter-spacing: 0; }.block-cat-three h1 { font-size: 2.25rem; font-weight: 800; line-height: 2.5rem; letter-spacing: -.025em; }.block-latest .holder .box h1, .block-cat-one .holder .box h1 { font-size: 2.25rem; font-weight: 800; line-height: 2.5rem; letter-spacing: -.025em; }.block-cat-three h3, .block-cat-four h3 { font-size: 1.5rem; font-weight: 800; line-height: 2rem; letter-spacing: -.025em; }.block-cat-one .holder .box p { font-size: 1.25rem; font-weight: 400; line-height: 2.25rem; letter-spacing: 0; }} .header nav { padding-block: 0.75rem; }.header nav .logo, .footer .logo { max-height: none; }.slides .ad-320x50, .slides .ad-300x600 { width: 100%; }.adhesion { z-index: 1000; }.mobile-unit.ad-300x250 { min-height: 295px !important; max-height: 295px !important; overflow: hidden; align-items: start; }@media screen and (max-width: 640px) { footer { display: none; } }
</style>
<script>
window.XDlongformcall = () => { }
window.XDlongformreload = () => { ayManagerEnv.refresh() }
window.XDlongformtracking = () => { if (window.assertive && 'function' == typeof window.assertive.nextPage) {
window.assertive.nextPage()
} }
window.XDlongforminfiniteScroll = () => { ATLongformCallUnits(true)
ATLazyLoadUnits(true) }
window.XDgallerycall = () => { ATGalleryCallUnits() }
window.XDgalleryreload = () => { ATGalleryCallUnits(true) }
window.XDgallerytracking = () => { if (window.assertive && 'function' == typeof window.assertive.nextPage) {
window.assertive.nextPage()
}
}
</script>
<script>
const XD = {"site":{"categories":[{"id":"animals","name":"Animals","src":"","info":""},{"id":"astrology","name":"Astrology","src":"","info":""},{"id":"babies","name":"Babies","src":"","info":""},{"id":"banned-items","name":"Banned Items","src":"","info":""},{"id":"beauty","name":"Beauty","src":"","info":""},{"id":"careers","name":"Careers","src":"","info":""},{"id":"celebrity","name":"Celebrity","src":"","info":""},{"id":"dark","name":"Dark","src":"","info":""},{"id":"deficiencies","name":"Deficiencies","src":"","info":""},{"id":"drink","name":"Drink","src":"","info":""},{"id":"entertainment","name":"Entertainment","src":"","info":""},{"id":"family","name":"Family","src":"","info":""},{"id":"fashion","name":"Fashion","src":"","info":""},{"id":"finance","name":"Finance","src":"","info":""},{"id":"food","name":"Food","src":"","info":""},{"id":"hacks","name":"Hacks","src":"","info":""},{"id":"health","name":"Health","src":"","info":""},{"id":"home","name":"Home","src":"","info":""},{"id":"jousty","name":"Jousty","src":"","info":""},{"id":"lifestyle","name":"Lifestyle","src":"","info":""},{"id":"money","name":"Money","src":"","info":""},{"id":"moviestv","name":"Movies/TV","src":"","info":""},{"id":"music","name":"Music","src":"","info":""},{"id":"nostalgia","name":"Nostalgia","src":"","info":""},{"id":"old-people","name":"Old People","src":"","info":""},{"id":"outdoors","name":"Outdoors","src":"","info":""},{"id":"pages","name":"Pages","src":"","info":""},{"id":"personality","name":"Personality","src":"","info":""},{"id":"pets","name":"Pets","src":"","info":""},{"id":"relationships","name":"Relationships","src":"","info":""},{"id":"spirituality","name":"Spirituality","src":"","info":""},{"id":"travel","name":"Travel","src":"","info":""},{"id":"trending","name":"Trending","src":"","info":""},{"id":"uncategorized","name":"Uncategorized","src":"","info":""},{"id":"women","name":"Women","src":"","info":""},{"id":"wow","name":"WOW","src":"","info":""},{"id":"zodiac","name":"Zodiac","src":"","info":""}],"users":[{"id":"andy@digital1.com","name":"andy"},{"id":"george@digital1.com","name":"George"},{"id":"josh@digital1.com","name":"Joshua King"},{"id":"lewis@digital1.com","name":"Lou"},{"id":"lewis@digital1.com","name":"Lou"},{"id":"molly@digital1.com","name":"molly"},{"id":"nick@digital1.com","name":"nick"},{"id":"peter@digital1.com","name":"peter"},{"id":"sultan@xenhired.com","name":"Sultan Mahmud"}],"settings":{"admin":{"preview":true,"caption":"Image Source/ Reddit"},"info":{"infoname":"theaustinsf","infocdn":"https://cdn.theaustinsf.com","infodescription":"theaustinsf","infoimage":{"src":"","error":"","loading":false,"uploaded":false},"infocourtesy":""},"logo":{"logosite":{"src":"https://cdn.theaustinsf.com/settings/image/logosite-173978548129433438.jpeg","error":"","loading":false,"uploaded":true},"logositedark":{"src":"https://cdn.theaustinsf.com/settings/image/logositedark-173978548970789160.jpeg","error":"","loading":false,"uploaded":true},"logofavicon":{"src":"https://cdn.theaustinsf.com/settings/image/logofavicon-173978550265971345.jpeg","error":"","loading":false,"uploaded":true},"desktopWidth":97,"desktopHeight":40,"mobileWidth":97,"mobileHeight":40,"logoLink":""},"menu":{"menuheader":[{"id":"Entertainment","link":"entertainment","type":"category"},{"id":"Lifestyle","link":"lifestyle","type":"category"},{"id":"Family","link":"family","type":"category"}],"menufooter":[{"id":"Contact Us","link":"contact-us","type":"page"},{"id":"Privacy Policy","link":"privacy-policy","type":"page"}]},"home":{"homedesign":[{"id":"latest","name":"Latest","text":"","category":"family","featured":1,"count":1},{"id":"column-three","name":"Column Three","text":"","category":"entertainment","featured":0,"count":3},{"id":"column-four","name":"Column Four","text":"","category":"lifestyle","featured":false,"count":4}],"render":0},"category":{"categorydesign":[{"id":"column-three","name":"Column Three","text":"","category":"","featured":false,"count":3,"render":0},{"id":"left","name":"Left","text":"","category":"","featured":false,"count":1,"render":0},{"id":"column-four","name":"Column Four","text":"","category":"","featured":false,"count":4,"render":0},{"id":"right","name":"Right","text":"","category":"","featured":false,"count":1,"render":0},{"id":"column-eight","name":"Column Eight","text":"","category":"","featured":false,"count":8,"render":0},{"id":"latest","name":"Latest","text":"WOW","category":"","featured":false,"count":1,"render":0}]},"search":{"searchdesign":[],"searchimage":{"src":"","error":"","loading":false,"uploaded":false}},"quiz":{"quizinfo":"","landing":false,"capture_emails":true},"theme":{"themedark":false,"showfeatured":false,"showauthor":false,"showdate":false,"slidebackground":true,"showuncategorized":true,"gallerybutton":"#efa70b","gallerybuttonhover":"#efaf0b","lazydesktop":true,"lazymobile":true,"stickybgdesktop":false,"stickybgmobile":true,"stickytopdesktop":false,"stickytopmobile":true,"infiniteLongform":true,"infiniteGallery":true,"gallerynumber":true},"block":{"blockdesign":3},"openai":{"summaryLength":250,"maxSlideNumber":50,"paragraphMinLength":350,"paragraphMaxLength":500,"externalInfo":"","language":[{"f":"Italian","r":"IT"},{"f":"French","r":"FR"},{"f":"Spanish","r":"ES"},{"f":"German","r":"DE"},{"f":"Romania","r":"RO"},{"f":"Denmark","r":"DK"},{"f":"Saudi Arabia","r":"SA"},{"f":"Mandarin","r":"CN"}]},"replace":{"textReplace":[]}},"units":{"longform":{"default":{"options":{"order":{"desktop":"","mobile":""},"scrollReload":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[]},"headingAfter":{"desktop":[],"mobile":[]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"slideAfter":{"desktop":[],"mobile":[]},"footer":{"desktop":[],"mobile":[]}}},"gallery":{"default":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":"0","mobile":"0"},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":0},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":0},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"320 x 50","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[]},"headingAfter":{"desktop":[],"mobile":[{"id":"320 x 50","name":"320x50","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}},"gallery7":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":0,"mobile":""},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":""},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":1},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"sticky","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingAfter":{"desktop":[],"mobile":[{"id":"320 x 50","name":"320x50","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}},"tester":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":0,"mobile":""},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":""},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":1},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"sticky","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingAfter":{"desktop":[],"mobile":[{"id":"320 x 50","name":"320x50","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}},{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}},"wfgallery2":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":0,"mobile":""},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":""},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":1},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"sticky","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingAfter":{"desktop":[],"mobile":[]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}},"quiz":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":0,"mobile":0},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":1},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":0},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"sticky","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[]},"headingBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingAfter":{"desktop":[],"mobile":[]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}},"testertopadhesion":{"options":{"order":{"desktop":"","mobile":""},"delay":{"desktop":0,"mobile":""},"reload":{"desktop":0,"mobile":0},"showTitle":{"desktop":0,"mobile":""},"buttonTopGap":{"desktop":0,"mobile":0},"buttonBottomGap":{"desktop":0,"mobile":0},"showIntro":{"desktop":0,"mobile":1},"disableReload":{"desktop":0,"mobile":0},"disableReload2":{"desktop":0,"mobile":0}},"left":{"desktop":[]},"right":{"desktop":[]},"sticky":{"desktop":[],"mobile":[{"id":"sticky","name":"320x50","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"stickytop":{"desktop":[],"mobile":[{"id":"stickytop","name":"prebid-adhesion-mobile-top","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"headingAfter":{"desktop":[],"mobile":[{"id":"320 x 50","name":"320x50","type":5,"page":5,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"imageBefore":{"desktop":[],"mobile":[]},"imageAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"paragraphBefore":{"desktop":[],"mobile":[]},"paragraphAfter":{"desktop":[],"mobile":[]},"buttonBefore":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"buttonAfter":{"desktop":[],"mobile":[{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}},{"id":"300 x 250","name":"300x250","type":5,"page":1,"css":{"mt":"","mb":"","ml":"","mr":"","pt":"","pb":"","pl":"","pr":"","w":"","h":""}}]},"footer":{"desktop":[],"mobile":[]}}}},"extra":[{"name":"summarytext","heading":1,"param":0,"text":"<div>Welcome to theaustinsf.com, your premier destination for the most shocking and sensational news stories that will leave you speechless. Here, we dig deep into the craziest events and entertainment buzz that defy expectations and spark intrigue.\n\nAt theaustinsf, our mission is to uncover the unbelievable—from jaw-dropping celebrity scandals and outrageous social media moments to bizarre news that makes you question everything you thought you knew. Our engaging content is designed to thrill and entertain, ensuring you're always in the loop on the wildest happenings in the world.\n\nEach day, our dedicated team curates a collection of stories that highlight the extraordinary and the shocking, presented with a fresh perspective that keeps you coming back for more. Whether you’re seeking the latest viral sensation or a mind-blowing news piece, theaustinsf.com is your ultimate source for everything that astonishes.\n\nThank you for exploring theaustinsf.com—where the unbelievable unfolds!</div>"}],"sites":[{"status":true,"name":"","link":"https://admin.theaustinsf.com","light":"","dark":"","code":"TASF","multi":true,"central":false}],"config":{"ay_wrapper":"https://hk8PvKuufY4FWCbbY.ay.delivery/manager/hk8PvKuufY4FWCbbY"}},"content":{}};
window.XD = XD;
</script>
</head>
<body>
<div id="app"></div>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1183952803289120');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1183952803289120&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
</body>
</html>