Skip to content

Instantly share code, notes, and snippets.

@immerrr
Last active June 28, 2017 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save immerrr/6cbdcae303683203ddb44a0c1c18731e to your computer and use it in GitHub Desktop.
Save immerrr/6cbdcae303683203ddb44a0c1c18731e to your computer and use it in GitHub Desktop.
xpath custom func bench
import timeit
"""
Looking at New York Times homepage:
Common classes:
[
('story', 147),
('story-heading', 145),
('theme-summary', 64),
('column', 58),
('collection', 50),
('section-heading', 49),
('story-link', 39),
('icon', 38),
('thumb', 35),
('ad', 33)
]
Many
<article class="story" ...
or
<article class="story theme-summary ...
"""
SETUP = '''
import lxml.etree
import lxml.html
CLASS_EXPR = "contains(concat(' ', normalize-space(@class), ' '), ' {} ')"
def has_class_old(context, *classes):
"""
This lxml extension allows to select by CSS class more easily
>>> ns = etree.FunctionNamespace(None)
>>> ns['has-class'] = has_class
"""
expressions = ' and '.join([CLASS_EXPR.format(c) for c in classes])
xpath = 'self::*[@class and {}]'.format(expressions)
return bool(context.context_node.xpath(xpath))
def has_class_set(context, *classes):
class_attr = context.context_node.get("class")
if class_attr:
return set(classes).issubset(class_attr.split())
def has_one_class(context, cls):
return cls in context.context_node.get("class", "").split()
def has_class_plain(context, *classes):
node_cls = context.context_node.get('class')
if node_cls is None:
return False
node_cls = ' ' + node_cls + ' '
for cls in classes:
if ' ' + cls + ' ' not in node_cls:
return False
return True
ns = lxml.etree.FunctionNamespace(None)
ns['has-class-old'] = has_class_old
ns['has-class-set'] = has_class_set
ns['has-one-class'] = has_one_class
ns['has-class-plain'] = has_class_plain
body = open('nytimes.html', 'rb').read().decode('utf-8')
from parsel import Selector
sel = Selector(body)
'''
N = 1000
def _t(stmt, setup=SETUP, number=N, ref=None):
v = timeit.timeit(stmt, setup, number=number)
rel = 1.0 if ref is None else (v / ref)
print '%-70s %6.3f %6.3f' % (stmt, v, rel)
return v
ref = _t('sel.css(".story")')
#_t('sel.xpath("//*[has-class-old(\'story\')]")', ref=ref)
_t('sel.xpath("//*[has-class-set(\'story\')]")', ref=ref)
_t('sel.xpath("//*[has-one-class(\'story\')]")', ref=ref)
_t('sel.xpath("//*[has-class-plain(\'story\')]")', ref=ref)
print("\n")
ref = _t('sel.css("article.story")')
#_t('sel.xpath("//article[has-class-old(\'story\')]")', ref=ref)
_t('sel.xpath("//article[has-class-set(\'story\')]")', ref=ref)
_t('sel.xpath("//article[has-one-class(\'story\')]")', ref=ref)
_t('sel.xpath("//article[has-class-plain(\'story\')]")', ref=ref)
print("\n")
ref = _t('sel.css("article.theme-summary.story")')
#_t('sel.xpath("//article[has-class-old(\'theme-summary\', \'story\')]")', ref=ref)
_t('sel.xpath("//article[has-class-set(\'theme-summary\', \'story\')]")', ref=ref)
_t('sel.xpath("//article[has-class-plain(\'theme-summary\', \'story\')]")', ref=ref)
print("\n")
ref = _t('sel.css(".story a")')
_t('sel.css(".story").xpath(".//a")', ref=ref)
#_t('sel.xpath("//*[has-class-old(\'story\')]//a")', ref=ref)
_t('sel.xpath("//*[has-class-set(\'story\')]//a")', ref=ref)
_t('sel.xpath("//*[has-one-class(\'story\')]//a")', ref=ref)
_t('sel.xpath("//*[has-class-plain(\'story\')]//a")', ref=ref)
print("\n")
<!DOCTYPE html>
<!--[if (gt IE 9)|!(IE)]> <!--> <html lang="en" class="no-js edition-domestic app-homepage" itemscope xmlns:og="http://opengraphprotocol.org/schema/"> <!--<![endif]-->
<!--[if IE 9]> <html lang="en" class="no-js ie9 lt-ie10 edition-domestic app-homepage" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js ie8 lt-ie10 lt-ie9 edition-domestic app-homepage" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if (lt IE 8)]> <html lang="en" class="no-js lt-ie10 lt-ie9 lt-ie8 edition-domestic app-homepage" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<head>
<title>The New York Times - Breaking News, World News & Multimedia</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="shortcut icon" href="https://static01.nyt.com/favicon.ico" />
<link rel="apple-touch-icon-precomposed" sizes="144×144" href="https://static01.nyt.com/images/icons/ios-ipad-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="114×114" href="https://static01.nyt.com/images/icons/ios-iphone-114x144.png" />
<link rel="apple-touch-icon-precomposed" href="https://static01.nyt.com/images/icons/ios-default-homescreen-57x57.png" />
<meta name="sourceApp" content="nyt-v5" />
<meta id="applicationName" name="applicationName" content="homepage" />
<meta id="foundation-build-id" name="foundation-build-id" content="" />
<link rel="canonical" href="https://www.nytimes.com" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" />
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://mobile.nytimes.com" />
<link rel="alternate" media="handheld" href="http://mobile.nytimes.com" />
<meta name="robots" content="noarchive,noodp,noydir" />
<meta name="description" content="The New York Times: Find breaking news, multimedia, reviews & opinion on Washington, business, sports, movies, travel, books, jobs, education, real estate, cars & more at nytimes.com." />
<meta name="CG" content="Homepage" />
<meta name="SCG" content="" />
<meta name="PT" content="Homepage" />
<meta name="PST" content="" />
<meta name="application-name" content="The New York Times" />
<meta name="msapplication-starturl" content="https://www.nytimes.com" />
<meta name="msapplication-task" content="name=Search;action-uri=http://query.nytimes.com/search/sitesearch?src=iepin;icon-uri=https://static01.nyt.com/images/icons/search.ico" />
<meta name="msapplication-task" content="name=Most Popular;action-uri=http://www.nytimes.com/gst/mostpopular.html?src=iepin;icon-uri=https://static01.nyt.com/images/icons/mostpopular.ico" />
<meta name="msapplication-task" content="name=Video;action-uri=http://video.nytimes.com/?src=iepin;icon-uri=https://static01.nyt.com/images/icons/video.ico" />
<meta name="msapplication-task" content="name=Homepage;action-uri=https://www.nytimes.com?src=iepin&amp;adxnnl=1;icon-uri=https://static01.nyt.com/images/icons/homepage.ico" />
<meta property="og:url" content="https://www.nytimes.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Breaking News, World News & Multimedia" />
<meta property="og:description" content="The New York Times: Find breaking news, multimedia, reviews & opinion on Washington, business, sports, movies, travel, books, jobs, education, real estate, cars & more at nytimes.com." />
<meta property="og:image" content="https://static01.nyt.com/images/icons/t_logo_291_black.png" />
<meta property="fb:app_id" content="9869919170" />
<meta name="apple-itunes-app" content="app-id=357066198, affiliate-data=at=10lIEQ&ct=Web%20iPad%20Smart%20App%20Banner&pt=13036" />
<meta name="keywords" content="United States Politics and Government,Senate,Health Insurance and Managed Care,Law and Legislation,Patient Protection and Affordable Care Act (2010),Trump, Donald J,Pence, Mike,United States Politics and Government,Health Insurance and Managed Care,Republican Party,Senate,Trump, Donald J,Pence, Mike,Heller, Dean,Law and Legislation,Senate,Republican Party,Health Insurance and Managed Care,Trump, Donald J,McConnell, Mitch,United States Politics and Government,Health Insurance and Managed Care,Patient Protection and Affordable Care Act (2010),Senate,Republican Party,Collins, Susan M,McConnell, Mitch,Patient Protection and Affordable Care Act (2010),National Governors Assn,Senate,Kasich, John R,Hickenlooper, John W,Sandoval, Brian,Baker, Charles D Jr,Better Care Reconciliation Act of 2017,Patient Protection and Affordable Care Act (2010),Senate,Republican Party,Health Insurance and Managed Care,Medicaid,Health Insurance and Managed Care,Medicare,United States Politics and Government,Patient Protection and Affordable Care Act (2010),Law and Legislation,Republican Party,Health Insurance and Managed Care,Patient Protection and Affordable Care Act (2010),Law and Legislation,Senate,Health Insurance and Managed Care,Federal Budget (US),Law and Legislation,Medicaid,Cyberattacks and Hackers,Extortion and Blackmail,Ukraine,Europe,Cyberattacks and Hackers,Shadow Brokers,Kaspersky Lab,Computers and the Internet,Extortion and Blackmail,United States Politics and Government,Police Brutality, Misconduct and Shootings,Ethics and Official Misconduct,Special Prosecutors (Independent Counsel),Police Department (Chicago, Ill),Venezuela,Maduro, Nicolas,Coups D'Etat and Attempted Coups D'Etat,Music,Oporto (Portugal),Portugal,Travel and Vacations,Rent Control and Stabilization,Landlords,Real Estate and Housing (Residential),Affordable Housing,Rent Guidelines Board,Rent Stabilization Assn,New York City,Suits and Litigation (Civil),Libel and Slander,Palin, Sarah,New York Times,New York Times Company,Biological and Chemical Warfare,United States International Relations,Trump, Donald J,Syria,Russia,United States,United States Politics and Government,Trump, Donald J,Obama, Barack,United States Politics and Government,Polls and Public Opinion,United States International Relations,Russian Interference in 2016 US Elections and Ties to Trump Associates,Trump, Donald J,Mueller, Robert S III,Federal Bureau of Investigation,Comey, James B,Presidents and Presidency (US),Watergate Affair,Appointments and Executive Changes,Iran-Contra Affair,United States Politics and Government,Clinton, Bill,Hoover, J Edgar,Nixon, Richard Milhous,California Today,Books and Literature,Homosexuality and Bisexuality,Transgender and Transsexuals,vis-multimedia,Grenfell Tower Fire (June, 2017),Fires and Firefighters,Evacuations and Evacuees,Accidents and Safety,Regulation and Deregulation of Industry,Buildings Department (NYC),Grenfell Tower (London, England),London (England),New York City,Accidents and Safety,Deaths (Fatalities),Fires and Firefighters,Grenfell Tower Fire (June, 2017),Arconic Inc.,Grenfell Tower (London, England),Saye, Khadija,May, Theresa M,Great Britain,London (England),Tuccu, Mohamednur,Mendy, Mary,Paulos, Isaac,News and News Media,Russian Interference in 2016 US Elections and Ties to Trump Associates,Rumors and Misinformation,CNN,Scaramucci, Anthony,Haris, Lex,Lichtblau, Eric,Frank, Thomas (Journalist),Sanders, Sarah Huckabee,Trump, Donald J,Labor and Jobs,International Business Machines Corporation,Hiring and Promotion,Appalachian Region,Vocational Training,Computers and the Internet,Markle Foundation,Microsoft Corp,vis-dispatch,Advertising and Marketing,Computers and the Internet,Social Media,Awards, Decorations and Honors,Cannes Lions International Festival of Creativity Awards,Cannes (France),Subways,Railroad Accidents and Safety,Metropolitan Transportation Authority,New York City,Harlem (Manhattan, NY),Manhattan (NYC),Metropolitan Transportation Authority,Subways,Railroad Accidents and Safety,Global Warming,Environment,Greenhouse Gas Emissions,Carbon Dioxide,vis-multimedia,Politics and Government,Census,Same-Sex Marriage, Civil Unions and Domestic Partnerships,Australian National University,Census Bureau,Pew Research Center,Australia,Canada,China,Germany,Italy,Kangaroos,Australia,Traffic Accidents and Safety,Josephine's Gallery and Kangaroo Orphanage (Coober Pedy, Australia),Roadkill,Coober Pedy (Australia),Animal Abuse, Rights and Welfare,vis-multimedia,Golden Hill (Book),Spufford, Francis,Books and Literature,Movies,Baby Driver (Movie),Wright, Edgar,Elgort, Ansel,Spacey, Kevin,Television,Comedy and Humor,Leno, Jay,CNBC,The Tonight Show (TV Program),Jay Lenos Garage (TV Program),Minorities,United States Politics and Government,Senate,Health Insurance and Managed Care,Law and Legislation,Patient Protection and Affordable Care Act (2010),Trump, Donald J,Pence, Mike" />
<meta name="video:playerId" content="2640832222001" />
<meta name="video:publisherId" content="1749339200" />
<meta name="video:publisherReadToken" content="cE97ArV7TzqBzkmeRVVhJ8O6GWME2iG_bRvjBTlNb4o." />
<meta name="dfp-ad-unit-path" content="homepage/us" />
<meta name="dfp-amazon-enabled" content="false" />
<meta name="adxPage" content="homepage.nytimes.com/index.html" />
<link id="legacy-zam5nzz" rel="stylesheet" type="text/css" href="https://typeface.nyt.com/css/zam5nzz.css" media="all" />
<!--[if (gt IE 9)|!(IE)]> <!-->
<link rel="stylesheet" type="text/css" media="screen" href="https://a1.nyt.com/assets/homepage/20170626-152643/css/homepage/styles.css" />
<!--<![endif]-->
<!--[if lte IE 9]>
<link rel="stylesheet" type="text/css" media="screen" href="https://a1.nyt.com/assets/homepage/20170626-152643/css/homepage/styles-ie.css" />
<![endif]-->
<!-- begin abra -->
<script>
var NYTD=NYTD||{};NYTD.Abra=function(t){"use strict";function n(t){var n=i[t];return n&&n[1]||null}function e(t,n){if(t){var e,o,r=n[0],i=n[1],u=0,c=0;if(1!==i.length||4294967296!==i[0])for(e=a(t+" "+r)>>>0,u=0,c=0;o=i[u++];)if(e<(c+=o[0]))return o}}function o(n,e,o,a){s+="subject="+n+"&test="+encodeURIComponent(e)+"&variant="+encodeURIComponent(o||0)+"&url="+encodeURIComponent(t.location.href)+"&instant=1&skipAugment=true\n",a&&f.push(a),c||(c=t.setTimeout(r,0))}function r(){var n=new t.XMLHttpRequest,e=f;n.withCredentials=!0,n.open("POST",u),n.onreadystatechange=function(){var t,o;if(4==n.readyState)for(t=200==n.status?null:new Error(n.statusText);o=e.shift();)o(t)},n.send(s),s="",f=[],c=null}function a(t){for(var n,e,o,r,a,i,u,c=0,s=0,f=[],l=[n=1732584193,e=4023233417,~n,~e,3285377520],h=[],p=t.length;s<=p;)h[s>>2]|=(s<p?t.charCodeAt(s):128)<<8*(3-s++%4);for(h[u=p+8>>2|15]=p<<3;c<=u;c+=16){for(n=l,s=0;s<80;n=[0|[(i=((t=n[0])<<5|t>>>27)+n[4]+(f[s]=s<16?~~h[c+s]:i<<1|i>>>31)+1518500249)+((e=n[1])&(o=n[2])|~e&(r=n[3])),a=i+(e^o^r)+341275144,i+(e&o|e&r|o&r)+882459459,a+1535694389][0|s++/20],t,e<<30|e>>>2,o,r])i=f[s-3]^f[s-8]^f[s-14]^f[s-16];for(s=5;s;)l[--s]=l[s]+n[s]|0}return l[0]}var i,u,c,s="",f=[];return n.init=function(n,r){var a,c,s,f,l,h=[],p=(t.document.cookie.match(/(^|;) *nyt-a=([^;]*)/)||[])[2],d=(t.document.cookie.match(/(^|;) *ab7=([^;]*)/)||[])[2],m=new RegExp("[?&]abra(=([^&#]*))"),g=m.exec(t.location.search);if(g&&g[2]&&(d=d?g[2]+"&"+d:g[2]),i)throw new Error("can't init twice");if(u=r,i={},d)for(d=decodeURIComponent(d).split("&"),a=0;a<d.length;a++)l=d[a].split("="),l[0]in i||(i[l[0]]=[,l[1],1],o("ab-alloc",l[0],l[1]),l[1]&&h.push(l[0]+"="+l[1]));for(a=0;a<n.length;a++)s=n[a],(c=s[0])in i||(f=e(p,s)||[],i[c]=f,f[1]&&h.push(c.replace(/[^\w-]/g)+"="+(""+f[1]).replace(/[^\w-]/g)),f[2]&&o("ab-alloc",c,f[1]));h.length&&t.document.documentElement.setAttribute("data-nyt-ab",h.join(" "))},n.reportExposure=function(n,e){var r=i[n];r&&r[2]?o("ab-expose",n,r[1],e):e&&t.setTimeout(function(){e(null)},0)},n}(this);
</script>
<script>NYTD.Abra.init([["HOME_ComingUp",[[2147483648,"control",1],[2147483648,"comingup",1]]],["HOME_NewsEvent2",[[3865470567,"full",1],[429496729,"control",1]]],["HOME_ElectionPrediction",[[3865470567,"on",1],[429496729,"control",1]]],["HOME_geoTrending",[[1460288881,"Control",1],[1417339208,"Header",1],[1417339207,"NoHeader",1]]],["www-ad-diagnostic",[[21474837,"1",0],[4273492459,null,0]]],["www-signup-favor-test",[[773094114,"0",1],[773094113,"1",1],[773094113,"2",1],[773094114,"3",1],[773094113,"4",1],[429496729,"5",1],[0,null,0]]],["www-readlater-test-1",[[1073741824,"control",1],[360777253,"controlHoldout",1],[1073741824,"variant1",1],[356482286,"variant1Holdout",1],[1073741824,"variant2",1],[356482285,"variant2Holdout",1]]],["www-signup-favor-test-v3",[[1288490189,"1",1],[1288490189,"2",1],[429496730,"4",1],[1288490188,"5",1]]],["www-signup-favor-test-v4",[[214748365,"control",1],[858993459,"1",1],[858993460,"2",1],[644245094,"4",1],[858993459,"5",1],[858993459,"6",1]]],["www-fabrik-off",[[4294967296,"1",1]]],["Liftoff",[[19520627,"0",1],[19520626,"1",1],[19520627,"2",1],[19520626,"3",1],[19520626,"4",1],[19520627,"5",1],[4177843537,null,0]]],["EC_SampleTest",[[2147483648,"variantA",0],[2147483648,"variantB",0]]],["EC_DigiAbandonmentTest",[[4294967296,"sendAbandonmentEmail",1]]],["EC_HdAbandonmentTest",[[4294967296,"sendAbandonmentEmail",1]]],["EC_CrosswordsUpsellTest",[[2147483648,"control",1],[2147483648,"upsell",1]]],["EC_NewSubOnboardingTest",[[2147483648,"control",1],[2147483648,"sov1",1]]],["PaywallAU",[[1417339208,"0",1],[1417339208,"1",1],[1460288880,"2",1]]]], '//et.nytimes.com/')</script>
<!-- end abra -->
<script>
(function () {
var e;
if (/^mobile\./.test(window.location.hostname)) {
var vi2 = (document.cookie.match(/(?:^|;) *vi=([^;]*)/) || [])[1] || '',
vi1 = (document.cookie.match(/(?:^|;) *nyt\.np\.vi=([^;]*)/) || [])[1] || '';
e = /^b1/.test(vi2) ? 'WP_ProjectVi&variant=vi'
: /^z1/.test(vi2) ? 'WP_ProjectVi&variant=0'
: /^a2/.test(vi2) ? 'WP_ProjectVi2&variant=hp-st'
: /^b2/.test(vi2) ? 'WP_ProjectVi2&variant=hp'
: /^c2/.test(vi2) ? 'WP_ProjectVi2&variant=st'
: /^z2/.test(vi2) ? 'WP_ProjectVi2&variant=0'
: /^1\|/.test(vi1) ? 'WP_ProjectVi&variant=vi'
: /^2\|/.test(vi1) ? 'WP_ProjectVi&variant=0'
: '';
} else if (/^www\./.test(window.location.hostname)) {
var vi = (document.cookie.match(/(?:^|;) *vi_www_hp=([^;]*)/) || [])[1] || '';
e = /^a2/.test(vi) ? 'WP_ProjectVi_www_hp&variant=hp-st'
: /^b2/.test(vi) ? 'WP_ProjectVi_www_hp&variant=hp'
: /^c2/.test(vi) ? 'WP_ProjectVi_www_hp&variant=st'
: /^z2/.test(vi) ? 'WP_ProjectVi_www_hp&variant=0'
: '';
}
if (e) {
var x = new XMLHttpRequest();
x.withCredentials = true;
x.open('POST','//et.nytimes.com/');
x.send('subject=ab-alloc&test=' + e + '&url=' + encodeURIComponent(window.location.href) + '&instant=1&skipAugment=true\n');
}
})();
</script>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
if (!window.NYTD) {
window.NYTD = {};
}
window.NYTD.Global = {
displayBriefings: function (time) {
var timedBriefings = document.getElementsByClassName('timedBriefing');
if (!timedBriefings.length) {
return;
}
var attrClass, attrStart, attrEnd, startTime, endTime;
var reFormat = /^\d{2}:\d{2}$/;
var reHide = / timedBriefingHide/i;
for (var i = 0; i < timedBriefings.length; i++) {
attrClass = timedBriefings[i].getAttribute('class');
attrStart = timedBriefings[i].getAttribute('data-start-time');
attrEnd = timedBriefings[i].getAttribute('data-end-time');
if (attrStart && attrEnd && reFormat.test(attrStart) && reFormat.test(attrEnd)) {
startTime = Number.parseInt(attrStart.replace(':', ''), 10);
endTime = Number.parseInt(attrEnd.replace(':', ''), 10);
// need to account for when the time span is across midnight
if (startTime > endTime) {
if (((time >= startTime) || (time < endTime)) && reHide.test(attrClass)) {
timedBriefings[i].setAttribute('class', attrClass.replace(reHide, ''));
}
if (((time < startTime) && (time >= endTime)) && !reHide.test(attrClass)) {
timedBriefings[i].setAttribute('class', (attrClass + ' timedBriefingHide'));
}
} else {
if ((time >= startTime) && (time < endTime) && reHide.test(attrClass)) {
timedBriefings[i].setAttribute('class', attrClass.replace(reHide, ''));
}
if (((time < startTime) || (time >= endTime)) && !reHide.test(attrClass)) {
timedBriefings[i].setAttribute('class', (attrClass + ' timedBriefingHide'));
}
}
}
}
},
testTZ: function (offset) {
var testTime = new Date(new Date().getTime() + (offset * 3600 * 1000));
window.NYTD.Global.displayBriefings((testTime.getUTCHours() * 100) + testTime.getUTCMinutes());
return testTime.toUTCString().replace(' GMT', '');
}
};
var now = new Date();
var previewTime = (now.getHours() * 100) + now.getMinutes();
var rePreviewTime = /previewTime=(\d*)/;
var matches = window.location.search.match(rePreviewTime);
if (matches) {
previewTime = Number.parseInt(matches[1]);
}
window.NYTD.Global.displayBriefings(previewTime);
});
</script>
<script type="text/javascript">var googletag=googletag||{};googletag.cmd=googletag.cmd||[],function(){var t=document.createElement("script");t.async=!0,t.type="text/javascript";var e="https:"==document.location.protocol;t.src=(e?"https:":"http:")+"//www.googletagservices.com/tag/js/gpt.js";var o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(t,o)}();</script>
<script src="https://cdn.optimizely.com/public/3013110282/s/home_prod.js"></script>
<!--esi
<script id="user-info-data" type="application/json">
<esi:include src="/svc/web-products/userinfo-v3.json" />
</script>
-->
<script id="magnum-feature-flags" type="application/json">["limitFabrikSave","moreFollowSuggestions","unfollowComments","allTheEmphases","videoVHSCover","videoVHSHomepageCover","videoVHSHomepageNewControls","videoVHSNewControls","videoVHSEmbeddedOnly","additionalOpinionRegions","hpViewability","freeTrial","hpPrototype","useCollectionApiForWell","enableFlexFrameAds","weatherLocation","fabrikWebsocketsOnly","NYTExperiment","hpRealEstateAd","jitterbug","updatedVideoPromoSmall","videoEmbed360","PersonalizationApiUpdate","globalBriefings","removeInternationalEdition","clientSideABRA","abraOverrideVersion","signupFavor","mapleFreeTrial","piiBlockDFP","anchorsHttps","viDesktopTest"]</script>
<script id="mpulse">
(function(){
if (window.BOOMR && window.BOOMR.version) { return; }
var dom,doc,where,iframe = document.createElement("iframe"),win = window;
function boomerangSaveLoadTime(e) {
win.BOOMR_onload=(e && e.timeStamp) || new Date().getTime();
}
if (win.addEventListener) {
win.addEventListener("load", boomerangSaveLoadTime, false);
} else if (win.attachEvent) {
win.attachEvent("onload", boomerangSaveLoadTime);
}
iframe.src = "javascript:void(0)";
iframe.title = ""; iframe.role = "presentation";
(iframe.frameElement || iframe).style.cssText = "width:0;height:0;border:0;display:none;";
where = document.getElementsByTagName("script")[0];
where.parentNode.insertBefore(iframe, where);
try {
doc = iframe.contentWindow.document;
} catch(e) {
dom = document.domain;
iframe.src="javascript:var d=document.open();d.domain='"+dom+"';void(0);";
doc = iframe.contentWindow.document;
}
doc.open()._l = function() {
var js = this.createElement("script");
if (dom) { this.domain = dom; }
js.id = "boomr-if-as";
js.src = "//c.go-mpulse.net/boomerang/" +
"ATH8A-MAMN8-XPXCH-N5KAX-8D239";
BOOMR_lstart=new Date().getTime();
this.body.appendChild(js);
};
doc.write('<body onload="document._l();">');
doc.close();
})();
</script>
<script>
var require = {
baseUrl: 'https://a1.nyt.com/assets/',
waitSeconds: 20,
paths: {
'foundation': 'homepage/20170626-152643/js/foundation',
'shared': 'homepage/20170626-152643/js/shared',
'homepage': 'homepage/20170626-152643/js/homepage',
'application': 'homepage/20170626-152643/js/homepage/',
'videoFactory': 'https://static01.nyt.com/js2/build/video/2.0/videofactoryrequire',
'videoPlaylist': 'https://static01.nyt.com/js2/build/video/players/extended/2.0/appRequire',
'auth/mtr': 'https://static01.nyt.com/js/mtr',
'auth/growl': 'https://static01.nyt.com/js/auth/growl/default',
'vhs': 'https://static01.nyt.com/video/vhs/build/vhs-2.x.min'
}
};
</script>
<!--[if (gte IE 9)|!(IE)]> <!-->
<script data-main="foundation/main" src="https://a1.nyt.com/assets/homepage/20170626-152643/js/foundation/lib/framework.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script>
require.map = { '*': { 'foundation/main': 'foundation/legacy_main' } };
</script>
<script data-main="foundation/legacy_main" src="https://a1.nyt.com/assets/homepage/20170626-152643/js/foundation/lib/framework.js"></script>
<![endif]-->
</head>
<body>
<style>
.lt-ie10 .messenger.suggestions {
display: block !important;
height: 50px;
}
.lt-ie10 .messenger.suggestions .message-bed {
background-color: #f8e9d2;
border-bottom: 1px solid #ccc;
}
.lt-ie10 .messenger.suggestions .message-container {
padding: 11px 18px 11px 30px;
}
.lt-ie10 .messenger.suggestions .action-link {
font-family: "nyt-franklin", arial, helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #a81817;
text-transform: uppercase;
}
.lt-ie10 .messenger.suggestions .alert-icon {
background: url('https://static01.nyt.com/images/icons/icon-alert-12x12-a81817.png') no-repeat;
width: 12px;
height: 12px;
display: inline-block;
margin-top: -2px;
float: none;
}
.lt-ie10 .masthead,
.lt-ie10 .navigation,
.lt-ie10 .comments-panel {
margin-top: 50px !important;
}
.lt-ie10 .ribbon {
margin-top: 97px !important;
}
</style>
<div id="suggestions" class="suggestions messenger nocontent robots-nocontent" style="display:none;">
<div class="message-bed">
<div class="message-container last-message-container">
<div class="message">
<span class="message-content">
<i class="icon alert-icon"></i><span class="message-title">NYTimes.com no longer supports Internet Explorer 9 or earlier. Please upgrade your browser.</span>
<a href="http://www.nytimes.com/content/help/site/ie9-support.html" class="action-link">LEARN MORE »</a>
</span>
</div>
</div>
</div>
</div>
<div id="shell" class="shell">
<header id="masthead" class="masthead theme-pinned-masthead" role="banner">
<div id="announcements-container" class="announcements-container"></div>
<div id="Header1" class="ad header1-ad"></div>
<div class="masthead-cap-container">
<div id="masthead-cap" class="masthead-cap">
<div class="quick-navigation button-group">
<button class="button sections-button enable-a11y">
<i class="icon sprite-icon"></i><span class="button-text">Sections</span>
</button>
<button class="button search-button">
<i class="icon sprite-icon"></i><span class="button-text">Search</span>
</button>
<a class="button skip-button skip-to-content visually-hidden focusable" href="#top-news">Skip to content</a>
<a class="button skip-button skip-to-navigation visually-hidden focusable" href="#site-index-navigation">Skip to navigation</a>
</div><!-- close quick-navigation -->
<div class="user-tools">
<div id="Bar1" class="ad bar1-ad"></div>
<div class="user-tools-button-group button-group">
<button class="button subscribe-button hidden" data-href="https://www.nytimes.com/subscriptions/Multiproduct/lp3004.html?campaignId=4XUYF">Subscribe Now</button>
<button class="button login-button login-modal-trigger hidden">Log In</button>
<button class="button notifications-button hidden"><i class="icon sprite-icon"></i><span class="button-text">0</span></button>
<button class="button user-settings-button">
<i class="icon sprite-icon"></i><span class="button-text">Settings</span>
</button>
</div>
</div><!-- close user-tools -->
</div><!-- close masthead-cap -->
</div><!-- close masthead-cap-container -->
<div class="masthead-meta">
<div class="editions tab">
<ul class="editions-menu">
<li class="edition-domestic-toggle active">English</li>
<li class="edition-chinese-toggle"><a href="http://cn.nytimes.com" target="_blank" data-edition="chinese">中文 (Chinese)</a></li>
<li class="edition-spanish-toggle"><a href="http://www.nytimes.com/es/" data-edition="spanish">Español</a></li>
</ul>
</div><!-- close editions -->
<div id="TopLeft" class="ad top-left-ad"></div>
<div id="TopRight" class="ad top-right-ad"></div>
<h2 class="branding"><a href="https://www.nytimes.com/">
<svg class="nyt-logo" width="379" height="64" role="img" aria-label="The New York Times">
<image width="379" height="64" xlink:href="https://a1.nyt.com/assets/homepage/20170626-152643/images/foundation/logos/nyt-logo-379x64.svg" src="https://a1.nyt.com/assets/homepage/20170626-152643/images/foundation/logos/nyt-logo-379x64.png" alt="The New York Times" border="0"/>
</svg>
</a></h2>
<ul class="masthead-menu">
<li class="date">Wednesday, June 28, 2017</li><li class="todays-paper"><a href="http://www.nytimes.com/pages/todayspaper/index.html" data-collection="todays-paper"><i class="icon sprite-icon"></i>Today’s Paper</a></li><li class="video"><a href="https://www.nytimes.com/video" data-collection="video"><i class="icon sprite-icon"></i>Video</a></li><li id="weather" class="weather hidden" data-collection="weather"><button class="button weather-button"></button></li><li id="markets" class="markets hidden" data-collection="markets"></li>
</ul>
</div><!-- close masthead-meta -->
<nav id="mini-navigation" class="mini-navigation">
<h2 class="visually-hidden">Quick Site Sections Navigation</h2>
<ul class="mini-navigation-menu">
<li>
<button class="button sections-button">
<i class="icon sprite-icon"></i>
<span class="button-text">Sections</span>
</button>
</li><li>
<button class="button search-button">
<i class="icon sprite-icon"></i>
<span class="button-text">Search</span>
</button>
</li>
<li class="shortcuts-9A43D8FC-F4CF-44D9-9B34-138D30468F8F ">
<a href="https://www.nytimes.com/pages/world/index.html">World</a>
</li>
<li class="shortcuts-23FD6C8B-62D5-4CEA-A331-6C2A9A1223BE ">
<a href="https://www.nytimes.com/pages/national/index.html">U.S.</a>
</li>
<li class="shortcuts-80E6DEE6-87E4-4AD0-9152-14FA6B07E5AB ">
<a href="https://www.nytimes.com/pages/politics/index.html">Politics</a>
</li>
<li class="shortcuts-C4DC8C0C-E148-4201-BF10-82F1C903DBFB ">
<a href="https://www.nytimes.com/pages/nyregion/index.html">N.Y.</a>
</li>
<li class="shortcuts-104D1E63-9701-497B-8CF4-A4D120C9014E domestic">
<a href="https://www.nytimes.com/pages/business/index.html">Business</a>
</li>
<li class="shortcuts-A257D89A-0D3C-40AF-9C34-1A25A7947D94 international">
<a href="https://www.nytimes.com/pages/business/international/index.html">Business</a>
</li>
<li class="shortcuts-AD8090D7-4137-4D71-84C8-70DA3BD89778 domestic">
<a href="https://www.nytimes.com/pages/opinion/index.html">Opinion</a>
</li>
<li class="shortcuts-09736473-CB3F-4B2F-9772-3AF128ABE12D international">
<a href="https://www.nytimes.com/pages/opinion/international/index.html">Opinion</a>
</li>
<li class="shortcuts-78FBAD45-31A9-4EC7-B172-7D62A2B9955E ">
<a href="https://www.nytimes.com/pages/technology/index.html">Tech</a>
</li>
<li class="shortcuts-A4B35924-DB6C-4EA3-997D-450810F4FEE6 ">
<a href="https://www.nytimes.com/section/science">Science</a>
</li>
<li class="shortcuts-7D6BE1AF-8CD8-430B-8B2A-17CD0EAA99AC ">
<a href="https://www.nytimes.com/pages/health/index.html">Health</a>
</li>
<li class="shortcuts-DE2B278B-2783-4506-AAD5-C15A5BB6DA1A domestic">
<a href="https://www.nytimes.com/pages/sports/index.html">Sports</a>
</li>
<li class="shortcuts-BE66F420-C51B-461D-B487-CACF62E94AAE international">
<a href="https://www.nytimes.com/pages/sports/international/index.html">Sports</a>
</li>
<li class="shortcuts-C5BFA7D5-359C-427B-90E6-6B7245A6CDD8 domestic">
<a href="https://www.nytimes.com/pages/arts/index.html">Arts</a>
</li>
<li class="shortcuts-0202D0E4-C59B-479A-BD42-6F1766459781 international">
<a href="https://www.nytimes.com/pages/arts/international/index.html">Arts</a>
</li>
<li class="shortcuts-B3DFBD82-F298-43B3-9458-219B4F6AA2A5 domestic">
<a href="https://www.nytimes.com/pages/fashion/index.html">Style</a>
</li>
<li class="shortcuts-CC9E2674-F6C4-4A39-813B-F5AB0C515CEA international">
<a href="https://www.nytimes.com/pages/style/international/index.html">Style</a>
</li>
<li class="shortcuts-D9C94A2B-0364-4D25-8383-592CC66F82D4 domestic">
<a href="https://www.nytimes.com/pages/dining/index.html">Food</a>
</li>
<li class="shortcuts-FDEFB811-B483-4C3D-A25A-FD07BE5EAD96 international">
<a href="https://www.nytimes.com/pages/dining/international/index.html">Food</a>
</li>
<li class="shortcuts-FDA10AC4-4738-4099-91E8-15584765C8D7 ">
<a href="https://www.nytimes.com/section/travel">Travel</a>
</li>
<li class="shortcuts-E57A148E-0CB9-4C02-966D-28B119710151 ">
<a href="https://www.nytimes.com/pages/magazine/index.html">Magazine</a>
</li>
<li class="shortcuts-052C33AD-1404-4DB6-AA70-0901DB1AD95B ">
<a href="https://www.nytimes.com/section/t-magazine">T Magazine</a>
</li>
<li class="shortcuts-92720057-BCB6-4BDB-9351-12F29393259F ">
<a href="https://www.nytimes.com/section/realestate">Real Estate</a>
</li>
<li><button class="button all-sections-button">all</button></li>
</ul>
</nav>
<div class="search-flyout-panel flyout-panel">
<button class="button close-button" type="button"><i class="icon"></i><span class="visually-hidden">Close search</span></button>
<nav class="search-form-control form-control layout-horizontal">
<h2 class="visually-hidden">Site Search Navigation</h2>
<form class="search-form" role="search">
<div class="control">
<div class="label-container visually-hidden">
<label for="search-input">Search NYTimes.com</label>
</div>
<div class="field-container">
<input id="search-input" name="search-input" type="text" class="search-input text" autocomplete="off" placeholder="Search NYTimes.com" />
<button type="button" class="button clear-button" tabindex="-1" aria-describedby="clear-search-input"><i class="icon"></i><span id="clear-search-input" class="visually-hidden">Clear this text input</span></button>
<div class="auto-suggest" style="display: none;">
<ol></ol>
</div>
<button class="button submit-button" type="submit">Go</button>
</div>
</div><!-- close control -->
</form>
</nav>
</div><!-- close flyout-panel -->
<div id="notification-modals" class="notification-modals"></div>
</header><!-- close masthead -->
<div id="masthead-placeholder" class="masthead-placeholder"></div>
<nav id="navigation" class="navigation">
<h2 class="visually-hidden">Site Navigation</h2>
</nav><!-- close navigation -->
<nav id="mobile-navigation" class="mobile-navigation hidden">
<h2 class="visually-hidden">Site Mobile Navigation</h2>
</nav><!-- close mobile-navigation -->
<div id="navigation-edge" class="navigation-edge"></div>
<div id="page" class="page">
<main id="main" class="main" role="main">
<div id="Top" class="ad hp-top-ad nocontent nojitter robots-nocontent"></div>
<div id="Top_Close" class="ad hp-top-ad-close hidden nocontent robots-nocontent"></div>
<div id="Top5" class="ad top5-ad hidden nocontent robots-nocontent"></div>
<div class="span-abc-region region">
<div class="collection">
<script type="text/javascript">
/*! geoip_resolver 2016-06-30 */
+function(a){"function"==typeof define&&define.amd?define("nytint-geoip",[],a):window.nytint_geoip=a()}(function(){"use strict";var a="nyt-geoip",b=document.getElementsByTagName("html"),c=!1,d=["continent_code","country_code","region","dma_code","postal_code","time_zone","zone_abbr"],e=function(b){var c=new XMLHttpRequest,d=null,e=null;try{if(d=JSON.parse(sessionStorage.getItem(a)),d&&void 0!==d.country_code)return g(d,b),d}catch(h){}c.onload=function(a){return a.target?(e=f(a.target),"undefined"==typeof e?!1:(g(e,b),e)):!1},c.onreadystatechange=function(){4===c.readyState&&200!==c.status&&console.error(c.status)},c.open("GET","https://geoip.newsdev.nytimes.com/",!0);try{c.responseType="json"}catch(h){}c.send()},f=function(a){var b=null;switch(!0){case"json"===a.responseType:b=a.response.data;break;case null!==a.response:b=JSON.parse(a.response).data;break;case null!==a.responseText:b=JSON.parse(a.responseText).message}return void 0!==b?b:null},g=function(e,f){if(!b)return!1;try{sessionStorage.setItem(a,JSON.stringify(e))}catch(g){}if(void 0!==e&&!c){for(var i,j=0;i=d[j];j++)if(void 0!==e[i]){var k=["geo",h(i),e[i]].join("-");b[0].classList.add(k)}c=!0}return"function"==typeof f&&f(e),e},h=function(a){var b=a;switch(!0){case a.indexOf("zone_abbr")>=0:b=a.replace("zone_abbr","us-timezone");break;case a.indexOf("_zone")>=0:b=a.replace("_zone","zone");break;case a.indexOf("_code")>=0:b=a.replace("_code","")}return b};return window.NYTINT_TESTING||e(),e});
(function() { require(['nytint-geoip']); })();
</script><!-- HP CSS Fixes -->
<style>
/* Fix for Small Video Promo Heds */
.story.theme-feature.video-promo-small.updated-video-promo-small .video-promo-small-container .story-heading{ padding: 0!important; }
/* Fix MM icons in kickers */
.kicker .icon:before { top: 0px; }
.kicker .media.slideshow { margin-bottom: 0px; }
/* Hiding Hacks */
.nythpHideKickers .kicker, .nythpHideBylines .byline, .nythpHideTimestamps .timestamp {
display: none;
}
/* banner hed modifications */
.span-ab-top-region .story.theme-summary .story-heading {
line-height: 2.1rem;
}
/* spacing fixes */
.collection.headlines {
margin-bottom: 12px;
}
/* Alterations to the Centered Feature Photo Spot Treatment */
.b-column .photo-spot-region .story.theme-feature .story-heading {
font-size: 1.35rem;
line-height: 1.65rem;
}
.b-column .photo-spot-region .story.theme-feature .story-heading {
padding: 0 22px; /* for headline wrapping */
}
.b-column .photo-spot-region .story.theme-feature .summary {
line-height: 18px;
}
.story.theme-feature .summary {
line-height: 1.125rem;
color: #333;
margin: 0 10px 3px;
}
/* Bullet Treatments */
.ab-column .collection article ul, .span-abc-region .collection article ul {
margin-top: 8px;
margin-bottom: -3px;
}
.ab-column .collection article ul.refer, .span-abc-region .collection article ul.refer {
margin-top: 2px;
margin-bottom: 0px;
}
.ab-column .collection article ul li, .span-abc-region .collection article ul li {
position: relative;
margin-bottom: 8px;
padding-left: 9px;
font-size: 13px;
font-size: 0.8125rem;
line-height: 18px;
line-height: 1.125rem;
font-weight: 400;
}
.ab-column .collection article ul li:before, .span-abc-region .collection article ul li:before {
border-radius: 1px;
background-color: #000;
width: 3px;
height: 3px;
content: '';
position: absolute;
display: block;
top: 7px;
left: 2px;
}
.ab-column .collection article ul li:last-child, .span-abc-region .collection article ul li:last-child {
margin-bottom: 0=;
}
.ab-column .collection article[data-collection-renderstyle="HpSumMediumMedia"] ul {
margin-bottom: 0px;
}
.theme-news-headlines li {
position: relative!important;
margin-bottom: 4px!important;
padding-left: 8px!important;
}
.theme-news-headlines {
margin-top: 2px!important;
}
.a-column .story.theme-summary.headline-medium-summary .medium-thumb {
float: none;
clear: none;
margin-left: 0px;
}
.first-column-region .story.theme-summary.headline-medium-summary .story-heading, .a-lede-package-region .story.theme-summary.headline-medium-summary .story-heading {
font-style: italic;
}
.first-column-region .collection:first-child .story.theme-summary.headline-medium-summary .story-heading, .a-lede-package-region .collection:first-child .story.theme-summary.headline-medium-summary .story-heading {
font-size: 26px;
font-size: 1.625rem;
line-height: 28px;
line-height: 1.75rem;
font-weight: 700;
}
/* Breaking News/Developing Headers */
.nythpBreaking {
color: #A81817;
border-top: 3px solid #A81817;
padding-top: 2px;
padding-bottom: 3px;
margin-top: 12px;
}
.nythpBreaking h6 {
text-transform: uppercase;
font-family: "nyt-franklin",arial,helvetica,sans-serif;
font-weight: 700;
}
.nythpDeveloping {
color: #FD8249;
border-top-color: #FD8249;
}
.nythpBreaking.nythpNoRule {
border: none;
margin-top: 0px;
}
.above-banner-region .nythpBreaking {
margin-bottom: 10px;
}
/* BEGIN .HPHEADER STYLING */
.hpHeader, .span-abc-region h3.collection-kicker {
margin-bottom: 10px;
}
.hpHeader h6, .span-abc-region h3.collection-kicker {
color: #000;
font-family: "nyt-franklin",helvetica,arial,sans-serif;
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
letter-spacing: .5px;
border-bottom: 2px solid #ccc;
display: inline-block;
line-height: 15px;
}
.span-abc-region h6, .span-abc-region h3.collection-kicker {
font-size: 13px;
line-height: 16px;
}
.hpHeader h6 a, .span-abc-region h3.collection-kicker a,
.hpHeader h6 a:visited, .span-abc-region h3.collection-kicker a:visited {
text-decoration: none;
color: #000;
}
.hpHeader h6:hover,
.hpHeader h6:active {
border-color: #222222;
}
.above-banner-region .hpHeader, .span-ab-top-region .hpHeader, .span-ab-lede-package-region .hpHeader, .b-column .hpHeader, .c-column .hpHeader {
text-align: center;
}
.above-banner-region .hpHeader h6, .span-ab-top-region .hpHeader h6, .span-ab-lede-package-region .hpHeader h6, .b-column .hpHeader h6, .c-column .hpHeader h6 {
margin: 0 auto;
padding: 0 2px;
}
.span-ab-top-region .a-column .hpHeader, .span-ab-lede-package-region .a-column .hpHeader, .b-column .split-layout .hpHeader, .b-column .nythpSplitCode .hpHeader {
text-align: left;
}
.b-column .split-layout .hpHeader h6, .b-column .nythpSplitCode .hpHeader h6 {
margin: 0;
padding: 0;
}
.hpLive h6, .hpLive h6:hover, .hpLive h6:active {
color: #a81817;
border-color: #a81817;
}
.hpDeveloping h6, .hpDeveloping h6:hover, .hpDeveloping h6:active {
color: #fd8249;
border-color: #fd8249;
}
.hpSingleRule {
border-top: 1px solid #e2e2e2;
padding-top: 12px;
}
/* added by matte to fix slideshow bug */
.loader-container {
display: none;
}
/* Newsletter Sign-Up Modules (updated 9/20/2016) */
div.notification-widget {
min-height:38px;
}
.notification-signup .notifications-title {
color: black;
font-family: "nyt-cheltenham-sh",georgia,"times new roman",times,serif;
font-size: 15px;
line-height: 18px;
font-weight: 200;
}
.notification-signup .notification-text {
margin-top: 3px;
margin-bottom: 5px;
color: #999;
font-size: 13px;
line-height: 18px;
}
.notification-widget input,
.notification-widget button {
outline: none;
}
.notification-widget .notify-email {
height: 30px;
width: 312px;
margin-top: 0px;
padding: 14px;
color: #a6a6a6;
border: 1px solid rgba(97,136,166,.5);
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
box-shadow: none;
font-family: 'nyt-franklin', Helvetica, sans-serif;
font-size: 14px;
line-height: 1;
}
.notification-widget .notify-email:hover{
border-color:rgba(97,136,166,1);
border-width:2px;
padding:13px;
}
.notification-widget .notify-email.error {
border-color: #FF9859;
}
.notification-widget .button {
margin-top: 0px;
padding: 8px;
border: none;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
background: #6288a5;
color: white;
font-family: 'nyt-franklin', Helvetica, sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 1;
text-transform: capitalize;
}
.notification-widget .dirtyform .button:hover,
.notification-widget .signedin .button:hover {
background-color: #326891;
}
.notification-widget .signedin .button {
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.notification-widget div.error {
font-family: 'nyt-franklin', Helvetica, sans-serif;
color: #FF9859;
font-size: 12px;
margin-top: 5px;
}
/* post subscribe notification */
.notification-signup span {
font-size: 14px;
color: ##ffffff;
font-family: 'nyt-franklin', Helvetica, sans-serif;
font-weight: 600;
}
.notification-widget div[data-status="initial"]{
display:inline-block;
float:right;
}
.notification-widget div[data-status="working"]{
opacity:0;
}
/* already subscribed notification */
.notification-widget div[data-status="initial"] div,
.notification-widget div[data-status="subscribed"] div,
.notification-widget div[data-status="working"] div {
font-family: 'nyt-franklin', Helvetica, sans-serif;
font-size: 14px;
color: #666 !important;
}
.notification-widget div[data-status="initial"] div{
line-height: 31px;
}
.notification-widget div[data-status="initial"] div div{
margin-right:8px;
display:inline-block;
}
.notification-widget div[data-status="initial"] div .account-name,
.notification-widget div[data-status="subscribed"] div .account-name{
font-weight: 700;
}
.notification-signup a {
font-size: 14px;
font-family: 'nyt-franklin', Helvetica, sans-serif;
font-weight: 400;
margin-top: 10px;
display: block;
color: #6187a6!important;
}
.notification-widget .email-address a{
margin-top: 5px;
display: block;
color: #6187a6!important;
}
.viewport-medium-10 .interactive-leadin, .viewport-medium-10 .notification-signup .notification-text{
max-width: 375px;
}
.notification-signup{
padding-top:11px;
}
a[data-reactid=".0.0.2"] {
font-size: 11px; }
/* Show All hack */
html.showAllGeoAb .timedBriefingHide, html.showAllGeoAb .nythpElectionPredictionCCol, html.showAllGeoAb .nythpNYRegionPromo, html.showAllGeoAb .nythpGeoCanada, html.showAllGeoAb .nythpCAToday { display: block !important }
</style>
<!-- Begin Smarter Living Styles and Scripts -->
<script type="text/javascript">
require(['foundation/main'], function () {
require([
'jquery/nyt',
'foundation/helpers/utils',
'foundation/views/page-manager'
], function ($, utils, pageManager) {
$(document).ready(function () {
var param = {
'contentCollection': 'smarter-living'
};
$('.nythpSmarterLiving a').each(function () {
var href = $(this).attr('href');
href = utils.appendQueryParams(href, param);
$(this).attr('href', href);
});
});
});
});
</script>
<style>
.nythpSmarterLiving {
zoom:1;
border-bottom: 0px solid #e2e2e2;
margin-bottom: 12px;
}
.nythpSmarterLiving:after,
.nythpSmarterLiving:before {
content: "";
display: table;
}
.nythpSmarterLiving:after{
clear: both;
}
.nythpSmarterLiving article {
float:left;
width: 177px;
}
.nythpSmarterLiving article.story.theme-summary {
margin-bottom: 0px;
}
.nythpSmarterLiving article:last-child,
.nythpSmarterLiving article:nth-of-type(2) {
margin-left: 21px;
}
.nythpSmarterLiving .byline, .nythpSmarterLiving .summary, .nythpSmarterLiving article .kicker, .nythpSmarterLiving .theme-comments, .nythpSmarterLiving .refer {
display: none;
}
.nythpSmarterLiving .story.theme-summary .story-heading {
width: 96px;
float: right;
}
.nythpSmarterLiving .story.theme-summary .thumb {
margin: 3px 6px 6px 0px;
float: left;
clear: none;
}
</style></div>
</div><!-- close span-abc-region -->
<div class="span-ab-layout layout">
<div class="ab-column column">
<section id="top-news" class="top-news">
<h2 class="section-heading visually-hidden">Top News</h2>
<div class="span-ab-top-region region">
<div class="collection">
<article class="story theme-summary banner" id="topnews-100000005189302" data-story-id="100000005189302" data-rank="0" data-collection-renderstyle="Banner">
<h1 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/politics/republicans-struggle-to-marshal-votes-for-health-care-bill.html">Health Bill Delayed Amid G.O.P. Disarray</a></h1>
</article>
</div>
</div><!-- close span-ab-top-region -->
<div class="lede-package-region region">
<div class="wide-b-layout layout theme-base">
<div class="a-column column">
<div class="a-lede-package-region region">
<div class="collection">
<article class="story theme-summary story-sub-headline" id="topnews-100000005189302" data-story-id="100000005189302" data-rank="0" data-collection-renderstyle="BannerSubHedSum">
<h2 class="story-heading story-sub-heading"><a href="https://www.nytimes.com/2017/06/27/us/politics/republicans-struggle-to-marshal-votes-for-health-care-bill.html">Opposition Within Party Forces Retreat by Senate Leader</a></h2>
<p class="byline">By THOMAS KAPLAN and ROBERT PEAR <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="8:35 PM" data-utc-timestamp="1498610108">8:35 PM ET</time></p>
<p class="summary"><ul><li>Senator Mitch McConnell postponed the vote on his legislation to repeal the Affordable Care Act as he works to corral support.</li>
<li>His tactic of appeasing conservatives while pressuring moderates exposed party fissures in an embarrassing setback for Republicans.</li></ul></p>
<p class="theme-comments">
<a href="https://www.nytimes.com/2017/06/27/us/politics/republicans-struggle-to-marshal-votes-for-health-care-bill.html?hp&amp;target=comments#commentsContainer" class="comments-link"><i class="icon sprite-icon comments-icon"></i><span class="comment-count">&nbsp;Comments</span></a>
</p>
</article>
</div>
<div class="collection">
<article class="story theme-summary" id="topnews-100000005189755" data-story-id="100000005189755" data-rank="0" data-collection-renderstyle="HpSum" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/health-care-bill-trump-pence.html">Trump Kept at Arm’s Length in Senate Health Talks</a></h2>
<p class="byline">By GLENN THRUSH and JONATHAN MARTIN <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="9:14 PM" data-utc-timestamp="1498612461">9:14 PM ET</time></p>
<p class="summary">Mr. McConnell reportedly told the White House that an ad campaign against a Republican opposed to the bill was “beyond stupid.”</p>
</article>
</div>
</div><!-- close a-lede-package-region -->
</div><!-- close a-column -->
<div class="b-column column">
<div class="b-lede-package-region region">
<div class="collection">
<article class="story theme-video theme-video-updated"
id="topnews-100000005181436"
data-story-id="100000005181436"
data-rank="0"
data-collection-renderstyle="VideoEmbed">
<figure class="promo media video embedded"
data-position="bledepackage"
data-page="homepage"
data-videoid="100000005181436"
data-headline="Fact Check: The Senate Health Care Plan"
data-summary="Does the health care bill in the Senate live up to Republicans' promises? We checked the facts."
data-live="false"
data-media-action="inline"
data-autoplay="false"
data-collection-renderstyle="VideoEmbed">
<figcaption class="caption">
<p class="credit credit-right" itemprop="copyrightHolder">
Video by DAVE HORN and NATALIE RENEAU.&nbsp;Photo by&nbsp;Doug Mills/The New York Times </p>
</figcaption>
</figure>
<p class="summary">Does the health care bill in the Senate live up to Republicans' promises? We checked the facts.</p>
</article>
</div>
<div class="collection">
<hr class="single-rule" style="width: 50%; text-align: center; margin: 12px auto 0;" />
</div>
<div class="collection">
<article class="story theme-summary" id="topnews-100000005191640" data-story-id="100000005191640" data-rank="0" data-collection-renderstyle="HpSum" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/politics/mitch-mcconnell-health-care-repeal.html">McConnell’s Reputation as a Tactician Takes a Hit</a></h2>
<p class="byline">By JENNIFER STEINHAUER <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="6:52 PM" data-utc-timestamp="1498603929">6:52 PM ET</time></p>
<p class="summary">By assuming that conservatives and moderates would unite to repeal Obamacare, Senator Mitch McConnell miscalculated.</p>
</article>
</div>
<div class="collection">
<article class="story theme-summary" id="topnews-100000005189515" data-story-id="100000005189515" data-rank="0" data-collection-renderstyle="HpSum" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/politics/affordable-care-act-governors.html">Key Constituency Against Bill: Governors of Both Parties</a></h2>
<p class="byline">By ALEXANDER BURNS </p>
<p class="summary">The Republican effort to overhaul the health care system inspired state-wide bipartisan cooperation — in an attempt to defeat it.</p>
</article>
</div>
<div class="collection headlines">
<h3 class="kicker collection-kicker">Related Coverage</h3>
<ul class="theme-news-headlines">
<li>
<article class="story" id="topnews-100000005190591" data-story-id="100000005190591" data-rank="0" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/interactive/2017/06/27/us/premiums-under-senate-health-plan.html"><span class="icon graphic"></span> How Health Costs Would Soar for Older Americans</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005189314" data-story-id="100000005189314" data-rank="1" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/us/politics/republicans-medicaid-health-care-affordable-care-act.html">Health Bill Does Not ‘Cut’ Medicaid Spending, Republicans Argue</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005188386" data-story-id="100000005188386" data-rank="2" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/business/economy/health-care-senate-mortality.html">When Cutting Access to Health Care, There’s a Price to Pay</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005188630" data-story-id="100000005188630" data-rank="3" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/26/upshot/a-few-bright-spots-for-republicans-the-rest-could-be-scored-as-grim.html">Why the Health Bill Forecast Left Republicans Shaken</a></h2>
</article>
</li>
</ul>
</div>
</div><!-- close b-lede-package-region -->
</div><!-- close b-column -->
</div><!-- close wide-b-layout -->
</div><!-- close lede-package-region -->
<hr class="scotch-rule" />
<div class="wide-b-layout layout">
<div class="a-column column">
<div class="first-column-region region">
<div class="collection">
<article class="story theme-summary" id="topnews-100000005189438" data-story-id="100000005189438" data-rank="0" data-collection-renderstyle="HpSumMediumMedia" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/technology/ransomware-hackers.html">Latest Cyberattack, Again Using N.S.A. Tools, Evaded Fixes</a></h2>
<p class="byline">By NICOLE PERLROTH, MARK SCOTT and SHEERA FRENKEL <time class="timestamp" datetime="2017-06-28" data-eastern-timestamp="12:01 AM" data-utc-timestamp="1498622463">12:01 AM ET</time></p>
<p class="summary">
The security agency has not acknowledged that its hacking tools were used in an April breach or the one Tuesday, which began in Ukraine and quickly crippled systems worldwide. </p>
<p class="theme-comments">
<a href="https://www.nytimes.com/2017/06/27/technology/ransomware-hackers.html?hp&amp;target=comments#commentsContainer" class="comments-link"><i class="icon sprite-icon comments-icon"></i><span class="comment-count">&nbsp;Comments</span></a>
</p>
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/2017/06/27/technology/ransomware-hackers.html"><img src="https://static01.nyt.com/images/2017/06/28/business/28hack1/28hack1-mediumFlexible177.jpg" alt="" /></a>
</div>
</figure>
</article>
</div>
<div class="collection headlines">
<ul class="theme-news-headlines">
<li>
<div style="margin-top: -10px;"></div> </li>
<li>
<article class="story" id="topnews-100000005189689" data-story-id="100000005189689" data-rank="1" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/technology/global-ransomware-hack-what-we-know-and-dont-know.html">What We Know and Don’t Know About the Attack</a></h2>
</article>
</li>
</ul>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005192799" data-story-id="100000005192799" data-rank="0" data-collection-renderstyle="HpSumSmallMedia">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/politics/trump-campaign-chiefs-firm-got-17-million-from-pro-russia-party.html">Ex-Trump Adviser’s Firm Paid Millions by Pro-Russia Party</a></h2>
<p class="byline">By NICHOLAS CONFESSORE, MIKE McINTIRE and BARRY MEIER <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="10:17 PM" data-utc-timestamp="1498616256">10:17 PM ET</time></p>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/27/us/politics/trump-campaign-chiefs-firm-got-17-million-from-pro-russia-party.html"><img src="https://static01.nyt.com/images/2017/06/28/us/28dc-manafort/28dc-manafort-thumbStandard-v2.jpg" alt=""></a>
</div>
<p class="summary">
Paul Manafort disclosed that his consulting firm earned over $17 million from a pro-Russian party for work it had done in Ukraine before he was a member of the Trump campaign. </p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005191240" data-story-id="100000005191240" data-rank="0" data-collection-renderstyle="HpSum" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/chicago-officers-indicted-laquan-mcdonald-shooting.html">3 Chicago Officers Accused of Cover-Up in 2014 Shooting</a></h2>
<p class="byline">By MONICA DAVEY and MITCH SMITH <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="8:59 PM" data-utc-timestamp="1498611575">8:59 PM ET</time></p>
<p class="summary">They are accused of covering up for Jason Van Dyke, a white officer who fatally shot Laquan McDonald, a black teenager, in 2014.</p>
<p class="theme-comments">
<a href="https://www.nytimes.com/2017/06/27/us/chicago-officers-indicted-laquan-mcdonald-shooting.html?hp&amp;target=comments#commentsContainer" class="comments-link"><i class="icon sprite-icon comments-icon"></i><span class="comment-count">&nbsp;Comments</span></a>
</p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005192859" data-story-id="100000005192859" data-rank="0" data-collection-renderstyle="HpSum" data-start-time="" data-end-time="">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/world/americas/venezuela-supreme-court-helicopter.html">Police in Helicopter Attack Venezuela’s Supreme Court</a></h2>
<p class="byline">By ERNESTO LONDOÑO and NICHOLAS CASEY <time class="timestamp" datetime="2017-06-28" data-eastern-timestamp="12:02 AM" data-utc-timestamp="1498622556">12:02 AM ET</time></p>
<p class="summary">The attack, with grenades, was a rare act of disloyalty against a government under pressure from protests and an economic collapse.</p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<div class="hpHeader">
<h6><a href="http://www.nytimes.com/video/the-daily-360">The Daily 360</a></h6>
</div>
<figure class="story theme-feature video media video-promo-small video-promo-small-360 updated-video-promo-small">
<a href="https://www.nytimes.com/video/arts/music/100000004924606/big-music-in-small-rooms-fado.html">
<div class="video-promo-small-container" style="background-image: url('https://static01.nyt.com/images/2017/06/28/pageoneplus/28a2_360/360-fado-filmstrip-v2.jpg');">
<div class="metadata">
<div class="play-button-and-duration">
<div class="play-icon">
<svg class="play-circle" height="28" width="28">
<circle cx="14" cy="14" r="13" stroke="#FFF" fill="transparent" stroke-width="1.5" />
</svg>
<svg version="1.2" class="play-triangle" height="10" width="10">
<polyline points="5,1.2264973081037427 10,9.88675134594813 0,9.88675134594813" transform="rotate(90, 5, 5)"></polyline>
</svg>
</div>
<div class="duration">
<span>1:20</span>
</div>
</div>
<h2 class="story-heading">
In Porto, Big Music in Small Rooms </h2>
<div class="orientation-icon">
<svg width="28px" height="28px" viewBox="0 0 28 28" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Compass-Cover-ACol">
<g id="360-View-Indicator">
<circle id="Oval-44" fill-opacity="0.1" fill="#000000" cx="14" cy="14" r="12.75"></circle>
<path d="M14,28 C21.7319865,28 28,21.7319865 28,14 C28,6.2680135 21.7319865,0 14,0 C6.2680135,0 0,6.2680135 0,14 C0,21.7319865 6.2680135,28 14,28 Z M14,26.75 C21.0416306,26.75 26.75,21.0416306 26.75,14 C26.75,6.95836944 21.0416306,1.25 14,1.25 C6.95836944,1.25 1.25,6.95836944 1.25,14 C1.25,21.0416306 6.95836944,26.75 14,26.75 Z" id="Border" fill="#FFFFFF"></path>
<g id="eyes" transform="translate(9.488845, 14.454531)" fill="#FFFFFF">
<ellipse id="Oval-12" cx="2.01115463" cy="2.04546933" rx="1.5" ry="1.5"></ellipse>
<ellipse id="Oval-12-Copy" cx="7.01115463" cy="2.04546933" rx="1.5" ry="1.5"></ellipse>
</g>
<path d="M13.9960842,13 L21.5,5.88357462 C19.5796583,4.05113973 16.9264365,3 13.9960843,3 C11.065732,3 8.42034167,4.05113973 6.5,5.88357462 L13.9960842,13 Z" id="view" fill="#FFFFFF"></path>
</g>
</g>
</g>
</svg>
</div>
</div>
</div>
</a>
<figcaption class="caption">
<p class="credit">Daniel Rodrigues for The New York Times. Technology by Samsung. </p>
</figcaption>
<a href="/video/the-daily-360" class="more-in-playlist">
<div>
<p class="more-in-playlist-kicker">More in </p>
<p class="more-in-playlist-title">The Daily 360 »</p>
</div>
</a>
</figure>
</div>
<hr class="single-rule" /><div class="collection headlines">
<h3 class="kicker collection-kicker">More News</h3>
<ul class="theme-news-headlines">
<li>
<article class="story" id="topnews-100000005189875" data-story-id="100000005189875" data-rank="0" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/nyregion/new-york-city-approves-rent-increases-for-stabilized-apartments.html">New York City Approves Rent Increases for Regulated Apartments</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005192856" data-story-id="100000005192856" data-rank="1" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/business/sarah-palin-sues-new-york-times.html">Sarah Palin Sues New York Times, Claiming Editorial Defamed Her</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005189252" data-story-id="100000005189252" data-rank="2" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/world/middleeast/syria-chemical-attack-trump.html">U.S. Says It’s Seen Chemical Weapons Activity in Syria</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005189488" data-story-id="100000005189488" data-rank="3" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/world/asia/china-human-trafficking.html">China Named Among Worst Human Trafficking Offenders</a></h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005188066" data-story-id="100000005188066" data-rank="4" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/26/us/politics/pew-survey-trump-leadership-overseas.html">Few Overseas Have Faith in Trump’s Leadership, Survey Finds</a></h2>
</article>
</li>
</ul>
</div>
<hr class="single-rule" /><div class="collection">
<!--
======================================================
THIS IS A GENERATED TEMPLATE FILE. DO NOT EDIT.
======================================================
-->
<!-- this is generated from src/style.css -->
<style>.tips-promo {
position: relative;
width: 100%;
height: auto; }
.tips-promo .nyt-logo {
position: absolute;
top: 1rem;
left: 0;
right: 0;
margin: 0 auto;
width: 6rem; }
.tips-promo svg {
width: 6rem;
margin: 0 auto; }
.tips-promo .text-bubble {
padding: 1rem 0; }
.tips-promo .text-bubble h1 {
font-family: "nyt-cheltenham", times, serif;
color: black;
position: relative;
font-size: 1.5rem;
font-weight: 400;
line-height: 0.9;
-webkit-font-smoothing: antialiased;
z-index: 0; }
.tips-promo .text-bubble h2 {
font-family: "nyt-cheltenham-sh", times, serif;
color: black;
position: relative;
font-size: 14px;
font-weight: 400;
line-height: 1.3;
-webkit-font-smoothing: antialiased;
z-index: 0;
padding-top: 0.5rem; }
.tips-promo .text-bubble .contact {
font-family: "nyt-cheltenham-sh", times, serif;
display: inline-block;
border-style: none;
border-color: transparent;
font-size: 13px;
font-weight: bold;
padding: 0;
background: none;
color: #326891;
text-decoration: underline; }
</style>
<div id="g-graphic" data-preview-slug="2016-10-31-tips-hp">
<div class="tips-promo">
<div class="text-bubble">
<h1><a href="https://www.nytimes.com/tips">Got a confidential news tip?</a></h1>
<h2>The New York Times offers several ways to get in touch with and provide materials to our journalists. <a href="https://www.nytimes.com/tips"><span class="contact">Learn more</span></a>.</h2>
</div>
</div>
</div>
<script>
var _gaq = _gaq || [];
define('_nytg/2016-10-31-tips-hp/assets', function() { return 'https://static01.nyt.com/newsgraphics/2016/10/31/tips-hp/00b5b741a6c5682e24f945c547f78fbe98f2c27f/'; });
define('_nytg/2016-10-31-tips-hp/big-assets', function() { return 'https://static01.nyt.com/newsgraphics/2016/10/31/tips-hp/assets/'; });
require(['foundation/main'], function() {
require(['https://static01.nyt.com/newsgraphics/2016/10/31/tips-hp/00b5b741a6c5682e24f945c547f78fbe98f2c27f/build.js']); // generated from src/script.js
});
</script>
<!-- Pipeline: 2016-10-31-tips-hp December 22, 2016, 09:17PM 00b5b741a6c5682e24f945c547f78fbe98f2c27f --></div>
</div><!-- close first-column-region -->
</div><!-- close a-column -->
<div class="b-column column">
<div class="second-column-region region">
<div class="collection">
<article class="story theme-feature" id="topnews-100000005184728" data-story-id="100000005184728" data-rank="0" data-collection-renderstyle="LargeMediaHeadlineSumCentered">
<h3 class="kicker">From the Magazine </h3>
<figure class="media photo">
<div class="image">
<a href="https://www.nytimes.com/2017/06/27/magazine/how-donald-trump-misunderstood-the-fbi.html"><img src="https://static01.nyt.com/images/2017/07/02/magazine/02fbi2/02mag-02fbi.t_CA1-largeHorizontal375.jpg" alt=""></a>
</div>
<figcaption class="caption" itemprop="description">
<span class="caption-text"></span>
<span class="credit" itemprop="copyrightHolder">
<span class="visually-hidden">Credit</span>
Photo illustration by Mike McQuade. Lewinsky, Comey, Gray, North: Getty Images. Letter: National Archives. </span>
</figcaption>
</figure>
<h1 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/magazine/how-donald-trump-misunderstood-the-fbi.html">How Donald Trump<br/>Misunderstood the F.B.I.</a></h1>
<p class="summary">Since Watergate, the bureau has come to view itself as an essential, and essentially independent, check on the president.</p>
<p class="byline">By TIM WEINER </p>
<p class="theme-comments">
<a href="https://www.nytimes.com/2017/06/27/magazine/how-donald-trump-misunderstood-the-fbi.html?hp&amp;target=comments#commentsContainer" class="comments-link"><i class="icon sprite-icon comments-icon"></i><span class="comment-count">&nbsp;Comments</span></a>
</p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary timedBriefing timedBriefingHide" id="topnews-100000005192580" data-story-id="100000005192580" data-rank="0" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="16:30" data-end-time="03:00">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/2017/06/27/briefing/senate-syria-google.html"><img src="https://static01.nyt.com/images/2017/06/27/us/27eveningss-slide-H22V/27eveningss-slide-H22V-mediumFlexible177.gif" alt="" /></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/briefing/senate-syria-google.html">Your Evening Briefing</a></h2>
<p class="byline">By KAREN ZRAICK and SANDRA STEVENSON </p>
<p class="summary">
Here’s what you need to know at the end of the day. </p>
</article>
<article class="story theme-summary timedBriefing timedBriefingHide" id="topnews-100000005192782" data-story-id="100000005192782" data-rank="1" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="06:00" data-end-time="11:00">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/2017/06/28/briefing/cyberattack-donald-trump-syria.html"><img src="https://static01.nyt.com/images/2017/06/28/briefing/28AMBRIEFINGS-EUROPE-GIF/28AMBRIEFINGS-EUROPE-GIF-mediumFlexible177.gif" alt="" /></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/28/briefing/cyberattack-donald-trump-syria.html">Your Wednesday Briefing</a></h2>
<p class="byline">By PATRICK BOEHLER and SARAH ANDERSON <time class="timestamp" datetime="2017-06-28" data-eastern-timestamp="12:35 AM" data-utc-timestamp="1498624548">12:35 AM ET</time></p>
<p class="summary">
Here’s what you need to know to start your day. </p>
</article>
</div>
<div class="collection">
<link rel="stylesheet" type="text/css" href="https://web-player.art19.com/releases/0.0.42.css">
<link rel="stylesheet" type="text/css" href="https://static01.nyt.com/packages/html/mobile/2017/Audio/nyt-micro-player.min.css">
<script src="https://static01.nyt.com/packages/html/mobile/2017/Audio/nyt-micro-player-template.min.js"></script>
<style>
.audio-brief .image {
width: 75px;
height: 75px;
float: right;
clear: right;
margin: 4px 0 6px 12px;
}
.audio-brief .summary {
padding-bottom: 10px;
}
.audio-brief .audio {
margin: 0;
}
.audio-brief .art19-web-player {
margin-bottom: 0;
}
.audio-brief .art19-web-player.awp-micro .awp-left {
border-right: none;
}
.audio-brief .art19-web-player.awp-micro .awp-brand-logo {
padding: 0;
}
.audio-brief .awp-brand-logo img {
display: none;
}
.audio-brief .awp-embed-button{
cursor: pointer;
}
#daily-sub-links{
width:100%;
padding:0;
margin:-10px 0 0 0;
}
#daily-sub-links p{
font-family:"nyt-franklin",arial,helvetica,sans-serif;
font-weight:400;
font-size: 12px;
line-height: 15px;
color:#000;
}
#daily-sub-links p a{
display:inline-block;
color: #326891;
padding-right: 8px;
padding-left: 6px;
border-right:1px solid #ccc;
}
#daily-sub-links p a:last-child{
border-right:none;
}
</style>
<article class="story audio-brief theme-summary">
<div class="image">
<a href="https://www.nytimes.com/column/the-daily">
<img src="https://static01.nyt.com/images/2017/02/23/podcasts/the-daily/the-daily-logo-png-version/the-daily-logo-png-version-thumbLarge-v3.png" height="75" width="75" alt="The Daily Logo">
</a>
</div>
<h3 class="kicker"><a href="https://www.nytimes.com/podcasts/">Audio</a></h3>
<h2 class="story-heading">
<a href="https://www.nytimes.com/thedaily">
Listen to ‘The Daily’
</a>
</h2>
<p class="summary">Adam Liptak, our Supreme Court reporter, describes the path of President Trump’s travel ban through the courts, up to the top.</p>
<figure id="audio" class="art19 media audio" aria-label="media" role="group" data-audio-url="" data-audio-duration="">
<span class="visually-hidden">Audio</span>
<div data-require-template="art19-web-player/templates/nyt-micro-player" data-preload='false' class="art19-web-player awp-micro awp-theme-light" data-episode-id='50ca29cb-9a1c-4a46-b5ac-979b1b6b4d13' data-squery='max-width:280px=awp-nyt-size-1 max-width:460px=awp-nyt-size-2' data-download-enabled='false' data-embed-enabled='false' data-brand-logo-enabled='false' data-ad-progress-color='#4d7b9f' data-emit-events='true' >
</div>
</figure>
</article>
<div id="daily-sub-links">
<p>Follow The Daily: <a href="https://itunes.apple.com/us/podcast/the-daily/id1200361736?mt=2&ign-mpt=uo%3D4" target="_blank">iTunes</a> <a href="https://play.radiopublic.com/88f7d8c3-7289-4dc6-b300-5ba71b43f5e5" target="_blank">Radio Public</a> <a href="http://www.stitcher.com/podcast/the-new-york-times/the-daily-10" target="_blank">Stitcher</a></p>
</div>
<script src="https://web-player.art19.com/releases/0.0.42.js"></script></div>
<div class="collection">
<style>
/*default display conditions*/
.nythpCAToday {display: none;}
/*geocoded display conditions*/
html.geo-region-CA .nythpCAToday {display: block;}
.nythpCAToday article::before {
content: "";
background: #e2e2e2;
width: 187px;
height: 1px;
margin: 12px 0 12px 93px;
}
.second-column-region .collection:first-child .nythpCAToday article::before {
display: none;
}
.second-column-region .collection:first-child .nythpCAToday { border-bottom: 1px solid #ccc;
padding-bottom: 8px;
}
</style>
<div class="nythpCAToday">
<article class="story theme-summary timedBriefing timedBriefingHide" id="topnews-100000005187704" data-story-id="100000005187704" data-rank="1" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="10:00" data-end-time="18:00">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/2017/06/27/us/california-today-beach-pollution.html"><img src="https://static01.nyt.com/images/2017/06/27/us/27California-Today-beach/27California-Today-beach-mediumFlexible177.jpg" alt="" /></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/us/california-today-beach-pollution.html">California Today: Surf, Sun and Bacteria</a></h2>
<p class="byline">By MIKE McPHATE </p>
<p class="summary">
The beach pollution picture, a green light for the Delta tunnels project and free glimpses of the Los Angeles Philharmonic. </p>
</article>
</div></div>
<hr class="single-rule" /><div class="collection">
<div class="hpHeader">
<h6><a href="http://www.nytimes.com/spotlight/times-tips?contentCollection=smarter-living">Smarter Living</a></h6>
</div><div class="nythpSmarterLiving smarterLiving-promo-region region">
<article class="story theme-summary" id="topnews-100000005181897" data-story-id="100000005181897" data-rank="2" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/23/books/20-years-of-lgbtq-lit-a-timeline.html">20 Years of L.G.B.T.Q. Lit: A Timeline</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/23/books/20-years-of-lgbtq-lit-a-timeline.html"><img src="https://static01.nyt.com/images/2017/06/23/books/booksupdate/23gaypridebooks-5/23gaypridebooks-5-thumbStandard.jpg" alt=""></a>
</div>
<p class="byline">By CONCEPCIÓN DE LEÓN </p>
<p class="summary">
From “The Vagina Monologues” to “The End of Eddy,” here are 25 books by and about L.G.B.T.Q. individuals that have shaped the genre. </p>
</article>
<article class="story theme-summary" id="topnews-100000005191242" data-story-id="100000005191242" data-rank="3" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://cooking.nytimes.com/68861692-nyt-cooking/6639686-our-10-most-popular-recipes-right-now">Our 10 Most Popular Recipes Right Now</a></h2>
<div class="thumb">
<a href="https://cooking.nytimes.com/68861692-nyt-cooking/6639686-our-10-most-popular-recipes-right-now"><img src="https://static01.nyt.com/images/2017/06/21/dining/21KENYA1-copy/21KENYA1-thumbStandard.jpg" alt=""></a>
</div>
<p class="summary">
A rich dish of chicken in a spiced coconut sauce, the best recipe for lemon bars, and more. </p>
</article>
</div>
<!-- Begin A/B Personalization Test -->
<style>
.flag-smarterLivingRec-on .nythpSmarterLiving {
display: none;
}
</style>
<script type="text/javascript">
require(['foundation/main'], function (main) {
require([
'underscore/nyt',
'jquery/nyt',
'foundation/views/base-view'
],
function (_, $, BaseView) {
var SmarterLiving = BaseView.extend({
template: _.template('<article class="story theme-summary" id="topnews-<%= id %>"' +
' data-story-id="<%= id %>" data-collection-renderstyle="HpSumSmallMediaHigh"><h2 class="story-heading">' +
'<a href="<%= url %>"><%= headline %></a></h2><div class="thumb"><a href="<%= url %>">' +
'<img src="<%= thumb_url %>" alt=""></a></div></article>'),
events: {
'click article a': 'handleArticleLinkClick'
},
articles: [],
initialize: function () {
const view = this;
if (!this.pageManager.flag('smarterLivingRec')) {
return;
}
this.$el = $('.nythpSmarterLiving');
this.setupImpressionTracking = _.once(this._setupImpressionTracking);
$.ajax(
{
url: 'https://rec.api.nytimes.com/svc/recommendations/v4/smarter_living.json',
xhrFields: {
withCredentials: true
}
})
.done(function(data) {
view.setupImpressionTracking();
_.each(data.assets, function(item) {
view.articles.push(item.url);
});
// iterate over the existing articles
view.$el.find('article').each(function (index) {
// replace with articles from rec service
$(this).replaceWith(view.template(data.assets[index]));
});
})
.always(function() {
// unhide articles
view.$el.css('display', 'block');
});
},
_setupImpressionTracking: function () {
if (this.pageManager.isComponentVisible(this.$el)) {
this.recordTrackingImpression();
} else {
this.subscribe('nyt:page-scroll', this.handleScroll);
}
},
handleArticleLinkClick: function (ev) {
const view = this;
const $el = $(ev.currentTarget);
var href = this.trackingAppendParams($el.attr('href'), {
'action': 'click',
'pgtype': 'Homepage',
'clickSource': 'story-heading',
'module': 'smarter-living',
'region': 'second-column-region',
'contentCollection': 'smarter-living',
'mData': $.param({
articles: view.articles
}),
});
$el.attr('href', href);
},
handleScroll: function () {
if (this.pageManager.isComponentVisible(this.$el)) {
this.recordTrackingImpression();
this.stopSubscribing('nyt:page-scroll');
}
},
recordTrackingImpression: function () {
const view = this;
this.trackingTriggerImpression('Impression', {
'module': 'smarter-living',
'pgtype': 'Homepage',
'region': 'second-column-region',
'action': 'impression',
'proxyEventType': 'impression',
'timestamp': new Date().getTime(),
'mData': {
articles: view.articles
},
});
},
});
new SmarterLiving();
});
});
</script>
<div id="g-graphic" class="nythp-smarter-living-formonly-email-promo notification-widget story">
<hr class="single-rule" style="width: 50%; text-align: center; margin: 12px auto 12px;" />
<p class="theme-summary">Get a weekly roundup of the best advice from The Times on living a better, smarter, more fulfilling life.</p>
<div id="smarter-living-form-only"></div>
</div>
<script>
require.config({
paths: {
'nytint/email-subscriber' : 'https://int.nyt.com/applications/email-subscriber/client'
}
});
require(['foundation/main'], function() {
require(['nytint/email-subscriber'], function(Subscriber) {
Subscriber.setup({
containerId: 'smarter-living-form-only',
productCode: 'SL',
elementToHideOnSubscribe: '.nythp-smarter-living-formonly-email-promo',
text: {unregisteredButton: 'Sign Up',
unregisteredPlaceholder: 'Get Smarter Living by email',
registeredButton: 'Sign Up',
alreadySubscribedMessage: 'You’re already subscribed.',
thanksMessage: 'You’ve signed up as %email%',
emailPreferencesLinkText: 'Update your mail preferences »',
errorMessage: 'Error submitting, please try again.',
registeredWelcome: 'Get Smarter Living by email'}
});
setTimeout(function(){
var widget = document.getElementById('smarter-living-form-only');
var container = widget.getElementsByTagName('div')[0];
var form = widget.getElementsByTagName('form')[0];
var status = container.getAttribute('data-status');
var notify = widget.getElementsByClassName('notify-email')[0];
if(notify !== undefined){
var origtext = notify.getAttribute('placeholder');
var newtext = 'Please enter your email address';
var button = container.getElementsByTagName('button')[0];
widget.setAttribute('class','clearfix');
notify.addEventListener('mouseover',function(){
notify.setAttribute('placeholder',newtext);
});
notify.addEventListener('mouseout',function(){
notify.setAttribute('placeholder',origtext);
});
notify.addEventListener('focus',function(){
notify.setAttribute('placeholder','');
});
}
if(form !== undefined){
notify.addEventListener('keyup',function(){
form.setAttribute('class','dirtyform');
});
container.setAttribute('class','not-signedin');
} else {
container.setAttribute('class','signedin');
}
},2000);
});
});
</script></div>
<div class="collection">
<style>
.signup-favor {
text-align: center;
color: #326891;
cursor: pointer;
padding-top: 15px;
padding-bottom: 15px;
}
.signup-favor.top-border {
margin-top: 8px;
padding-top: 32px;
border-top: 1px solid #ccc;
}
.signup-favor.bottom-border {
padding-bottom: 33px;
border-bottom: 1px solid #ccc;
}
.signup-favor a:hover {
text-decoration: none;
}
.signup-favor .tagline {
display: block;
font-size: 1.25rem;
line-height: 1.75rem;
font-weight: 700;
font-style: normal;
font-family: "nyt-cheltenham", georgia, "times new roman", times, serif;
color: #000;
}
.signup-favor .subscribe {
font-size: 12px;
line-height: 1.0625rem;
font-weight: 500;
font-style: normal;
font-family: "nyt-franklin", arial, helvetica, sans-serif;
color: #326891;
border-bottom: 1px solid rgba(50,104,145,.2);
letter-spacing: .04em;
margin: 5px auto 0;
padding-bottom: 1px;
text-transform: uppercase;
display: inline-block;
-moz-transition: border 0.2s ease;
-webkit-transition: border 0.2s ease;
-ms-transition: border 0.2s ease;
transition: border 0.2s ease;
}
.signup-favor .tagline .support {
font-size: 1.25rem;
}
.signup-favor .tagline .no-break {
white-space: nowrap;
}
.signup-favor:hover .subscribe {
border-color: rgba(50,104,145,1);
}
</style>
<div id="g-graphic" class="sub-promo-click">
<div class="signup-favor hidden" id="signup-favor">
<a href="https://www.nytimes.com/DesktopHome" class="subscribe-link">
<span class="tagline"><span class="no-break">Journalism that matters.</span> <br /><span class="no-break">More essential than ever.</span></span>
<span class="subscribe">Subscribe to the Times</span>
</a>
</div>
</div>
<script type="text/javascript">
require(['foundation/main'], function(main) {
require(['jquery/nyt', 'underscore/nyt', 'foundation/models/user-data', 'foundation/tracking/tracking-mixin', 'foundation/views/page-manager', 'foundation/hosts'],
function ($, _, userData, trackingMixin, pageManager, hosts) {
var signupPromo = {
taglines: {
'promo1': '<span style="white-space: nowrap">Journalism that matters.</span><br /><span style="white-space: nowrap"> More essential than ever.</span>',
'promo2': '<span style="white-space: nowrap">Independent journalism.</span><br /><span style="white-space: nowrap">More essential than ever.</span>',
'promo3': 'Real reporting. Real news.',
'promo4': 'Independent. Trusted. Real.',
'promo5': 'Real journalism. <span style="white-space: nowrap">Like nowhere else.</span>',
'promo6': 'Truth is hard to find.<br /><span style="white-space: nowrap; font-size: 1.25rem;">But easier with 1,000+ journalists looking.</span>'
},
/**
* Initialization called when instantiating the view
*
* @method initialize
**/
initialize: function () {
this.$el = $('#signup-favor');
$(document).on('click', "#g-graphic.sub-promo-click", function(e){
if (e) {
e.preventDefault();
}
signupPromo.handleClick();
});
this.version = 'promo1';
userData.ready(function() {
signupPromo.handleUserReady();
});
this.link = 'https://www.nytimes.com/DesktopHome';
},
trackImpression: function() {
setTimeout(function() {
signupPromo.tracking.trackingTriggerRaw(
signupPromo.version,
{
module: 'election-sub-desktop-home',
action: 'impression'
},
'impression'
);
}, 1000);
},
handleUserReady: function () {
var view = this;
console.log("abra "+ window.NYTD.Abra('www-signup-favor-test-v4'));
if (window.NYTD.Abra('www-signup-favor-test-v4') == 'control') {
return;
}
if (userData) {
if (!userData.isHomeDeliverySubscriber() &&
!userData.isWebSubscriber() &&
!userData.isMobileSubscriber() &&
!userData.isTabletSubscriber()) {
if (!$('html').hasClass('geo-country-US')) {
this.link = 'https://www.nytimes.com/DesktopHomeINYT';
this.$el.find(".subscribe-link").attr("href", "http://www.nytimes.com/DesktopHomeINYT")
}
this.switchText();
} else {
this.$el.find('.tagline').html('<span class="no-break support">Support the mission of The Times.</span>');
this.$el.find('.subscribe').html('Sponsor a student subscription today.');
this.version = 'studentSponsor';
this.link = 'https://www.nytimes.com/NativeSponsor';
this.$el.find('.subscribe-link').attr('href', 'https://www.nytimes.com/NativeSponsor');
}
// if user is not already subscribed, show the element
this.$el.removeClass('hidden');
this.trackImpression();
if (this.$el.closest('.column').hasClass('ab-column')){
this.$el.addClass('top-border');
} else if (this.$el.closest('.column').hasClass('b-column')) {
this.$el.addClass('top-border').addClass('bottom-border');
}
}
},
switchText: function () {
var hasAbra = false;
hasAbra = window.NYTD && window.NYTD.Abra && window.NYTD.Abra('www-signup-favor-test-v4');
// check if this is part of an AB test
if (hasAbra) {
switch (window.NYTD.Abra('www-signup-favor-test-v4')) {
case '1':
this.$el.find('.tagline').html(this.taglines['promo1']);
this.version = 'promo1';
break;
case '2':
this.$el.find('.tagline').html(this.taglines['promo2']);
this.version = 'promo2';
break;
case '3':
this.$el.find('.tagline').html(this.taglines['promo3']);
this.version = 'promo3';
break;
case '4':
this.$el.find('.tagline').html(this.taglines['promo4']);
this.version = 'promo4';
break;
case '5':
this.$el.find('.tagline').html(this.taglines['promo5']);
this.version = 'promo5';
break;
case '6':
this.$el.find('.tagline').html(this.taglines['promo6']);
this.version = 'promo6';
break;
}
}
},
handleClick: function (e) {
if (e) {
e.preventDefault();
}
this.tracking.trackingTriggerRaw(
this.version,
{
module: 'election-sub-desktop-home',
action: 'click',
eventName: 'sign-up'
},
'interaction'
);
setTimeout(function() {
window.location.href = signupPromo.link;
}, 300);
},
};
signupPromo.tracking = trackingMixin;
signupPromo.pageManager = pageManager;
signupPromo.hosts = hosts;
signupPromo.initialize();
});
});
</script></div>
<div class="collection">
<article class="story theme-summary" id="topnews-100000005189376" data-story-id="100000005189376" data-rank="0" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/world/europe/london-high-rise-fire-new-york-regulation.html">Would This London High-Rise Pass in New York? No</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/27/world/europe/london-high-rise-fire-new-york-regulation.html"><img src="https://static01.nyt.com/images/2017/06/28/world/28Londonfire-comparison1/28Londonfire-comparison1-thumbStandard.jpg" alt=""></a>
</div>
<p class="byline">By MEGAN SPECIA </p>
<p class="summary">
The features of an evacuated London apartment building would not have passed muster in New York, which has much stricter building codes and safety checks, according to officials. </p>
</article>
</div>
<div class="collection headlines">
<ul class="theme-news-headlines">
<li>
<div style="margin-top: -10px;"></div> </li>
<li>
<article class="story" id="topnews-100000005189265" data-story-id="100000005189265" data-rank="1" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/world/europe/grenfell-tower-london-fire-victim.html">U.K. Orders Inquiry After Grenfell Tower Fire</a> </h2>
</article>
</li>
</ul>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005190701" data-story-id="100000005190701" data-rank="0" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/business/media/cnn-retracted-story-on-trump.html">A Costly Retraction for CNN and an Opening for Trump</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/27/business/media/cnn-retracted-story-on-trump.html"><img src="https://static01.nyt.com/images/2017/06/28/business/28CNN-jp/28CNN-jp-thumbStandard-v2.jpg" alt=""></a>
</div>
<p class="byline">By MICHAEL M. GRYNBAUM <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="8:48 PM" data-utc-timestamp="1498610910">8:48 PM ET</time></p>
<p class="summary">
The ferocious response to a breakdown in editorial procedures was a reminder of the network’s unique role as a nemesis for the president. </p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005188648" data-story-id="100000005188648" data-rank="0" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/28/technology/tech-jobs-skills-college-degree.html">A New Kind of Tech Job Emphasizes Skills, Not Degrees</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/28/technology/tech-jobs-skills-college-degree.html"><img src="https://static01.nyt.com/images/2017/06/28/business/28TECHJOBS1/28TECHJOBS1-thumbStandard.jpg" alt=""></a>
</div>
<p class="byline">By STEVE LOHR <time class="timestamp" datetime="2017-06-28" data-eastern-timestamp="12:05 AM" data-utc-timestamp="1498622713">12:05 AM ET</time></p>
<p class="summary">
Programs promoting a skills-based labor market are gaining momentum and changing the way people are hired and trained for tech and other jobs. </p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005187567" data-story-id="100000005187567" data-rank="0" data-collection-renderstyle="HpSumSmallMediaHigh">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/business/media/cannes-lions-french-riviera-advertising.html">Ads on the French Riviera: The Internet Come to Life</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/27/business/media/cannes-lions-french-riviera-advertising.html"><img src="https://static01.nyt.com/images/2017/06/27/business/cannes-dispatch-edit-slide-ZOZ1/cannes-dispatch-edit-slide-ZOZ1-thumbStandard.jpg" alt=""></a>
</div>
<p class="byline">Photographs and Text by SAPNA MAHESHWARI </p>
<p class="summary">
The Cannes Lions festival attracts big brands, the top players in technology and boldface names. Our reporter, a first-time attendee, found plenty to observe. </p>
</article>
</div>
<hr class="single-rule" /><div class="collection">
<article class="story theme-summary" id="topnews-100000005192718" data-story-id="100000005192718" data-rank="0" data-collection-renderstyle="HpSumSmallMediaHigh">
<h3 class="kicker">About New York </h3>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/nyregion/how-to-fix-mounting-subway-problems.html">Political Bickering Won’t Fix Mounting Subway Misery</a></h2>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/27/nyregion/how-to-fix-mounting-subway-problems.html"><img src="https://static01.nyt.com/images/2017/06/28/nyregion/28ABOUTalt/28ABOUTalt-thumbStandard.jpg" alt=""></a>
</div>
<p class="byline">By JIM DWYER <time class="timestamp" datetime="2017-06-27" data-eastern-timestamp="8:36 PM" data-utc-timestamp="1498610208">8:36 PM ET</time></p>
<p class="summary">
Investigating the cause of Tuesday’s derailment may help address the subway’s many problems, but the snarling between Mayor Bill de Blasio and Gov. Andrew M. Cuomo will not. </p>
</article>
</div>
<div class="collection headlines">
<ul class="theme-news-headlines">
<li>
<div style="margin-top: -10px;"></div> </li>
<li>
<article class="story" id="topnews-100000005189647" data-story-id="100000005189647" data-rank="1" data-collection-renderstyle="HpBlogHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/nyregion/subway-train-derails-in-manhattan.html">Subway Derailment in Manhattan Injures Dozens</a></h2>
</article>
</li>
</ul>
</div>
<hr class="single-rule" /><div class="collection">
<style>
.nythpGeoMBPromo-AU, .nythpGeoMBPromo-EU, .nythpGeoMBPromo-AS {
display: none;
}
html.geo-continent-AS .nythpGeoMBPromo-AS, html.geo-continent-OC .nythpGeoMBPromo-AU, html.geo-country-AU .nythpGeoMBPromo-AU, html.geo-continent-EU .nythpGeoMBPromo-EU, html.geo-continent-AF .nythpGeoMBPromo-EU { display: block; }
html.geo-continent-AS .nythpGeoMBPromo, html.geo-continent-OC .nythpGeoMBPromo, html.geo-country-AU .nythpGeoMBPromo, html.geo-continent-EU .nythpGeoMBPromo, html.geo-continent-AF .nythpGeoMBPromo { display: none; }
</style>
<article class="story theme-summary nythpGeoMBPromo-AU" id="topnews-100000005085460" data-story-id="100000005085460" data-rank="0" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="" data-end-time="">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/newsletters/morning-briefing-australia"><img src="https://static01.nyt.com/images/2017/05/08/world/asia/australia-briefing-signup01/australia-briefing-signup01-mediumFlexible177.png" alt=""></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/newsletters/morning-briefing-australia">Morning Briefing: Australia Edition</a></h2>
<p class="summary">The news and stories that matter to readers in Australia. Sign up to get it by email, Monday through Friday. </p>
<div id="g-graphic" class="nythp-morning-briefing-email-promo notification-widget">
<div id="morning-briefing-widget-au"></div>
</div>
<script>
require.config({
paths: {
'nytint/email-subscriber' : 'https://int.nyt.com/applications/email-subscriber/client'
}
});
require(['foundation/main'], function() {
require(['nytint/email-subscriber'], function(Subscriber) {
Subscriber.setup({
containerId: 'morning-briefing-widget-au',
productCode: 'MBAU',
/* elementToHideOnSubscribe: '.nythp-morning-briefing-email-promo', */
text: {unregisteredButton: 'Sign Up',
unregisteredPlaceholder: 'Get the Morning Briefing by email.',
registeredButton: 'Sign Up',
alreadySubscribedMessage: 'You’re already subscribed.',
thanksMessage: 'You’ve signed up as %email%',
emailPreferencesLinkText: 'Update your mail preferences »',
errorMessage: 'Error submitting, please try again.',
registeredWelcome: 'Get the Morning Briefing by email.'}
});
setTimeout(function(){
var widget = document.getElementById('morning-briefing-widget');
var container = widget.getElementsByTagName('div')[0];
var form = widget.getElementsByTagName('form')[0];
var status = container.getAttribute('data-status');
var notify = widget.getElementsByClassName('notify-email')[0];
if(notify !== undefined){
var origtext = notify.getAttribute('placeholder');
var newtext = 'Please enter your email address';
var button = container.getElementsByTagName('button')[0];
widget.setAttribute('class','clearfix');
notify.addEventListener('mouseover',function(){
notify.setAttribute('placeholder',newtext);
});
notify.addEventListener('mouseout',function(){
notify.setAttribute('placeholder',origtext);
});
notify.addEventListener('focus',function(){
notify.setAttribute('placeholder','');
});
}
if(form !== undefined){
notify.addEventListener('keyup',function(){
form.setAttribute('class','dirtyform');
});
container.setAttribute('class','not-signedin');
} else {
container.setAttribute('class','signedin');
}
},2000);
});
});
</script>
</article>
<article class="story theme-summary nythpGeoMBPromo-AS" id="topnews-100000005085459" data-story-id="100000005085459" data-rank="1" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="" data-end-time="">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/newsletters/morning-briefing-asia"><img src="https://static01.nyt.com/images/2017/05/26/world/26asiapromo2/26asiapromo2-mediumFlexible177.jpg" alt=""></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/newsletters/morning-briefing-asia">Morning Briefing: Asia Edition</a></h2>
<p class="summary">The news and stories that matter to readers in Asia. Sign up to get it by email, Monday through Friday. </p>
<div id="g-graphic" class="nythp-morning-briefing-email-promo notification-widget">
<div id="morning-briefing-widget-as"></div>
</div>
<script>
require.config({
paths: {
'nytint/email-subscriber' : 'https://int.nyt.com/applications/email-subscriber/client'
}
});
require(['foundation/main'], function() {
require(['nytint/email-subscriber'], function(Subscriber) {
Subscriber.setup({
containerId: 'morning-briefing-widget-as',
productCode: 'MBAE',
/* elementToHideOnSubscribe: '.nythp-morning-briefing-email-promo', */
text: {unregisteredButton: 'Sign Up',
unregisteredPlaceholder: 'Get the Morning Briefing by email.',
registeredButton: 'Sign Up',
alreadySubscribedMessage: 'You’re already subscribed.',
thanksMessage: 'You’ve signed up as %email%',
emailPreferencesLinkText: 'Update your mail preferences »',
errorMessage: 'Error submitting, please try again.',
registeredWelcome: 'Get the Morning Briefing by email.'}
});
setTimeout(function(){
var widget = document.getElementById('morning-briefing-widget');
var container = widget.getElementsByTagName('div')[0];
var form = widget.getElementsByTagName('form')[0];
var status = container.getAttribute('data-status');
var notify = widget.getElementsByClassName('notify-email')[0];
if(notify !== undefined){
var origtext = notify.getAttribute('placeholder');
var newtext = 'Please enter your email address';
var button = container.getElementsByTagName('button')[0];
widget.setAttribute('class','clearfix');
notify.addEventListener('mouseover',function(){
notify.setAttribute('placeholder',newtext);
});
notify.addEventListener('mouseout',function(){
notify.setAttribute('placeholder',origtext);
});
notify.addEventListener('focus',function(){
notify.setAttribute('placeholder','');
});
}
if(form !== undefined){
notify.addEventListener('keyup',function(){
form.setAttribute('class','dirtyform');
});
container.setAttribute('class','not-signedin');
} else {
container.setAttribute('class','signedin');
}
},2000);
});
});
</script>
</article>
<article class="story theme-summary nythpGeoMBPromo-EU" id="topnews-100000004906098" data-story-id="100000004906098" data-rank="2" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="" data-end-time="">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/newsletters/morning-briefing-europe"><img src="https://static01.nyt.com/images/2017/05/26/world/26europeanpromo2/26europeanpromo2-mediumFlexible177.jpg" alt=""></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/newsletters/morning-briefing-europe">Morning Briefing: Europe Edition</a></h2>
<p class="summary">The news and stories that matter to readers in Europe. Sign up to get it by email, Monday through Friday. </p>
<div id="g-graphic" class="nythp-morning-briefing-email-promo notification-widget">
<div id="morning-briefing-widget-eu"></div>
</div>
<script>
require.config({
paths: {
'nytint/email-subscriber' : 'https://int.nyt.com/applications/email-subscriber/client'
}
});
require(['foundation/main'], function() {
require(['nytint/email-subscriber'], function(Subscriber) {
Subscriber.setup({
containerId: 'morning-briefing-widget-eu',
productCode: 'MBE',
/* elementToHideOnSubscribe: '.nythp-morning-briefing-email-promo', */
text: {unregisteredButton: 'Sign Up',
unregisteredPlaceholder: 'Get the Morning Briefing by email.',
registeredButton: 'Sign Up',
alreadySubscribedMessage: 'You’re already subscribed.',
thanksMessage: 'You’ve signed up as %email%',
emailPreferencesLinkText: 'Update your mail preferences »',
errorMessage: 'Error submitting, please try again.',
registeredWelcome: 'Get the Morning Briefing by email.'}
});
setTimeout(function(){
var widget = document.getElementById('morning-briefing-widget');
var container = widget.getElementsByTagName('div')[0];
var form = widget.getElementsByTagName('form')[0];
var status = container.getAttribute('data-status');
var notify = widget.getElementsByClassName('notify-email')[0];
if(notify !== undefined){
var origtext = notify.getAttribute('placeholder');
var newtext = 'Please enter your email address';
var button = container.getElementsByTagName('button')[0];
widget.setAttribute('class','clearfix');
notify.addEventListener('mouseover',function(){
notify.setAttribute('placeholder',newtext);
});
notify.addEventListener('mouseout',function(){
notify.setAttribute('placeholder',origtext);
});
notify.addEventListener('focus',function(){
notify.setAttribute('placeholder','');
});
}
if(form !== undefined){
notify.addEventListener('keyup',function(){
form.setAttribute('class','dirtyform');
});
container.setAttribute('class','not-signedin');
} else {
container.setAttribute('class','signedin');
}
},2000);
});
});
</script>
</article>
<article class="story theme-summary nythpGeoMBPromo" id="topnews-100000004906098" data-story-id="100000004906098" data-rank="2" data-collection-renderstyle="HpSumMediumMediaHigh" data-start-time="" data-end-time="">
<figure class="media photo medium-thumb">
<div class="image">
<a href="https://www.nytimes.com/newsletters/morning-briefing"><img src="https://static01.nyt.com/images/2017/05/25/us/25usbriefing/25usbriefing-mediumFlexible177-v2.jpg" alt=""></a>
</div>
</figure>
<h2 class="story-heading"><a href="https://www.nytimes.com/newsletters/morning-briefing">Morning Briefing</a></h2>
<p class="summary">The news and stories that matter. Delivered to your inbox Monday through Friday.</p>
<div id="g-graphic" class="nythp-morning-briefing-email-promo notification-widget">
<div id="morning-briefing-widget"></div>
</div>
<script>
require.config({
paths: {
'nytint/email-subscriber' : 'https://int.nyt.com/applications/email-subscriber/client'
}
});
require(['foundation/main'], function() {
require(['nytint/email-subscriber'], function(Subscriber) {
Subscriber.setup({
containerId: 'morning-briefing-widget',
productCode: 'NN',
/* elementToHideOnSubscribe: '.nythp-morning-briefing-email-promo', */
text: {unregisteredButton: 'Sign Up',
unregisteredPlaceholder: 'Get the Morning Briefing by email.',
registeredButton: 'Sign Up',
alreadySubscribedMessage: 'You’re already subscribed.',
thanksMessage: 'You’ve signed up as %email%',
emailPreferencesLinkText: 'Update your mail preferences »',
errorMessage: 'Error submitting, please try again.',
registeredWelcome: 'Get the Morning Briefing by email.'}
});
setTimeout(function(){
var widget = document.getElementById('morning-briefing-widget');
var container = widget.getElementsByTagName('div')[0];
var form = widget.getElementsByTagName('form')[0];
var status = container.getAttribute('data-status');
var notify = widget.getElementsByClassName('notify-email')[0];
if(notify !== undefined){
var origtext = notify.getAttribute('placeholder');
var newtext = 'Please enter your email address';
var button = container.getElementsByTagName('button')[0];
widget.setAttribute('class','clearfix');
notify.addEventListener('mouseover',function(){
notify.setAttribute('placeholder',newtext);
});
notify.addEventListener('mouseout',function(){
notify.setAttribute('placeholder',origtext);
});
notify.addEventListener('focus',function(){
notify.setAttribute('placeholder','');
});
}
if(form !== undefined){
notify.addEventListener('keyup',function(){
form.setAttribute('class','dirtyform');
});
container.setAttribute('class','not-signedin');
} else {
container.setAttribute('class','signedin');
}
},2000);
});
});
</script>
</article>
</div>
</div><!-- close second-column-region -->
</div><!-- close b-column -->
</div><!-- close wide-b-layout -->
<div class="bottom-span-promo-region region">
<div class="collection">
<style>
/*default display conditions*/
#span-ab-bottom-au-region {
/*display: none;*/
display: block;
position: absolute;
visibility: hidden;
}
#span-ab-bottom-region .column.column-au-region {
/*display: none;*/
display: block;
position: absolute;
visibility: hidden;
}
/*geocoded display conditions*/
html.geo-country-AU #span-ab-bottom-region .column {display: none;}
html.geo-country-AU #span-ab-bottom-region .column.column-au-region {
display: block;
position: inherit;
visibility: visible;
}
.span-ab-layout .ab-column .split-3-layout .column:nth-of-type(1),
.span-ab-layout .ab-column .split-3-layout .column:nth-of-type(4) {
padding-left: 0;
}
.span-ab-layout .ab-column .split-3-layout .column:last-child,
.span-ab-layout .ab-column .split-3-layout .column:nth-of-type(3),
.span-ab-layout .ab-column .split-3-layout .column:nth-of-type(6) {
border-right: none;
padding-right: 0px;
}
#span-ab-bottom-region .section-heading-au-region { display: none; }
html.geo-country-AU #span-ab-bottom-region .section-heading { display: none; }
html.geo-country-AU #span-ab-bottom-region .section-heading-au-region {
display: block;
text-align: center;
}
html.geo-country-AU #span-ab-bottom-region .section-heading-au-region h2.section-heading {
display: inline-block;
color: #000;
font-family: "nyt-franklin",helvetica,arial,sans-serif;
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
letter-spacing: .5px;
border-bottom: 2px solid #ccc;
line-height: 15px;
}
html.geo-country-AU #span-ab-bottom-region .section-heading-au-region h2.section-heading:hover,
html.geo-country-AU #span-ab-bottom-region .section-heading-au-region h2.section-heading:active {
border-color: #222222;
}
html.geo-country-AU #span-ab-bottom-region .section-heading a {
text-decoration: none;
color: #000;
}
</style>
<script>
require(['foundation/main'], function() {
require(['jquery/nyt', 'underscore/nyt'], function($, _) {
$("#span-ab-bottom-region div.split-3-layout").append($("#span-ab-bottom-au-region div.split-3-layout > div.column").addClass("column-au-region").remove());
$("#span-ab-bottom-region div.split-3-layout").prepend($('<span class="section-heading-au-region"><h2 class="section-heading"><a href="https://www.nytimes.com/section/world/australia">Australia Picks</a></h2></span>'));
var auHeight = _.max($("#span-ab-bottom-region div.split-3-layout .column.column-au-region article").map(function(i, el) { return $(el).height(); }));
$("#span-ab-bottom-region div.split-3-layout .column.column-au-region").css({"min-height": (auHeight+6)+"px"});
}) })
</script>
<div id="span-ab-bottom-au-region" class="span-ab-bottom-region-au region"><div>
<hr class="scotch-rule">
<div class="split-3-layout layout theme-base"><div>
</div>
<h2 class="section-heading">
</h2>
<div class="column">
<article class="story theme-summary " id="topnews-100000005183641" data-story-id="100000005183641" data-rank="0" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/26/climate/carbon-in-atmosphere-is-rising-even-as-emissions-stabilize.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/24/science/24EMISSIONS1-copy/24EMISSIONS1-mediumThreeByTwo210.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/climate/carbon-in-atmosphere-is-rising-even-as-emissions-stabilize.html">Carbon in Atmosphere Is Rising, Even as Emissions Stabilize</a>
</h2>
<p class="summary">
Scientists are concerned over the cause of the rapid rise, which may indicate the world’s natural sponges that absorb carbon dioxide have changed. </p>
</article>
</div>
<div class="column">
<article class="story theme-summary " id="topnews-100000005188776" data-story-id="100000005188776" data-rank="1" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/26/world/australia/australia-census-more-diverse-older-same-sex-couples.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/27/world/australia/27ozbreakdown_census/27ozbreakdown_census-mediumThreeByTwo210.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/world/australia/australia-census-more-diverse-older-same-sex-couples.html">Australia, Diverse and Graying. Also: Johnny Depp, and a Controversial Push to Decrypt</a>
</h2>
<p class="summary">
Conversation starters and context, drawn from the day’s news in Australia. </p>
</article>
</div>
<div class="column">
<article class="story theme-summary " id="topnews-100000005166500" data-story-id="100000005166500" data-rank="2" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/26/world/australia/australia-kangaroos-joeys-stuart-highway.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/26/world/australia/27roadroos-5/27roadroos-5-mediumThreeByTwo210.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/world/australia/australia-kangaroos-joeys-stuart-highway.html">A Quest to Save Baby Kangaroos on a Lonely Australian Highway</a>
</h2>
<p class="summary">
Kangaroos can end up as roadkill, but sometimes a joey will live when its mother dies. We check out an orphanage that takes in about 100 baby roos a year. </p>
</article>
</div>
<div class="collection">
</div></div></div></div></div>
</div><!-- close bottom-span-promo-region -->
<div id="span-ab-bottom-region" class="span-ab-bottom-region region">
<hr class="scotch-rule" />
<div class="split-3-layout layout theme-base">
<h2 class="section-heading">
</h2>
<div class="column">
<article class="story theme-summary " id="topnews-100000005188673" data-story-id="100000005188673" data-rank="0" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/27/books/review-golden-hill-francis-spufford.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/28BOOKSPUFFORD1/28BOOKSPUFFORD1-mediumThreeByTwo210-v2.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/books/review-golden-hill-francis-spufford.html">Francis Spufford’s Novel Is a Swashbuckling Tale</a>
</h2>
<p class="summary">
“Golden Hill” follows the misadventures of a handsome young stranger who arrives in New York from London, hoping to cash in on a fortune. </p>
</article>
</div>
<div class="column">
<article class="story theme-summary " id="topnews-100000005173837" data-story-id="100000005173837" data-rank="1" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/27/movies/baby-driver-review-edgar-wright-ansel-elgort.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/28BABYDRIVE/28BABYDRIVE-mediumThreeByTwo210-v2.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/movies/baby-driver-review-edgar-wright-ansel-elgort.html">Review: In ‘Baby Driver,’ It’s Kiss Kiss, Zoom Zoom</a>
</h2>
<p class="summary">
Burning rubber and hot licks help propel this action movie about a getaway driver named Baby, played by Ansel Elgort. Edgar Wright directed. </p>
</article>
</div>
<div class="column">
<article class="story theme-summary " id="topnews-100000005187352" data-story-id="100000005187352" data-rank="2" data-collection-renderstyle="HPMediumMediaHedSumDaypart">
<a href="https://www.nytimes.com/2017/06/27/arts/television/jay-leno-stand-up-after-the-tonight-show.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/27/us/27leno/27leno-mediumThreeByTwo210.jpg" />
</div>
</a>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/arts/television/jay-leno-stand-up-after-the-tonight-show.html">Jay Leno Still Cares About Tonight’s Show</a>
</h2>
<p class="summary">
The former “Tonight Show” host explains why he performs over 200 stand-up shows a year, and discusses the challenges of political joke-telling. </p>
</article>
</div>
</div>
</div><!-- close span-ab-bottom-region -->
</section><!-- close top-news -->
</div><!-- close ab-column -->
<div class="c-column column">
<div id="Middle" class="ad middle-ad hidden nocontent robots-nocontent"></div>
<div class="region c-column-top-span-region">
</div><!-- close c-column-top-span-region -->
<section class="opinion">
<div class="region opinion-c-col-top-region">
<div class="collection">
<section class="opinion">
<h2 class="section-heading"><a href="http://www.nytimes.com/pages/opinion/index.html">The Opinion Pages</a>
</h2>
</section></div>
</div> <!-- close opinion-c-col-top-region -->
<div class="layout split-layout">
<div class="column">
<div class="region opinion-c-col-left-region">
<div class="collection">
<article class="story theme-summary" id="topnews-100000005190603" data-story-id="100000005190603" data-rank="0" data-collection-renderstyle="HpSumXSMedia">
<h3 class="kicker">Editorial </h3>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/opinion/health-care-mcconnell-trumpcare-cbo.html">The Health Care Hoax Has Been Exposed</a></h2>
<div class="small-thumb">
<a href="https://www.nytimes.com/2017/06/27/opinion/health-care-mcconnell-trumpcare-cbo.html"><img src="https://static01.nyt.com/images/2017/06/28/opinion/28wed1web/28wed1web-blogSmallThumb.jpg" alt=""></a>
</div>
<p class="summary">
Drafting a bill in secret couldn’t hide the fact that it would harm millions of Americans. </p>
</article>
</div>
<div class="collection headlines">
<ul class="theme-news-headlines">
<li>
<article class="story" id="topnews-100000005188752" data-story-id="100000005188752" data-rank="0" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/im-glad-the-dyke-march-banned-jewish-stars.html">I’m Glad the Dyke March Banned Jewish Stars</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005190338" data-story-id="100000005190338" data-rank="1" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/bill-cosby-brock-turner-sexual-harassment.html">Bill Cosby, Sexual Safety Guru? Here’s a Better Idea</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005176924" data-story-id="100000005176924" data-rank="2" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/rebuilding-in-miniature-iraq-refugee.html"><span class="icon video">Op-Docs</span>: Rebuilding in Miniature</a> </h2>
</article>
</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="region opinion-c-col-right-region">
<div class="collection">
<article class="story theme-summary" id="topnews-100000005187535" data-story-id="100000005187535" data-rank="0" data-collection-renderstyle="HpSumXSMedia">
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/27/opinion/stopping-pandemics-before-they-start.html">Stopping the Next Pandemic</a></h2>
<div class="small-thumb">
<a href="https://www.nytimes.com/2017/06/27/opinion/stopping-pandemics-before-they-start.html"><img src="https://static01.nyt.com/images/2017/06/27/opinion/27fixes1web/27fixes1web-blogSmallThumb.jpg" alt=""></a>
</div>
<p class="byline">By TINA ROSENBERG </p>
<p class="summary">
After Ebola, how to be ready for the next pandemic threat. </p>
</article>
</div>
<div class="collection headlines">
<ul class="theme-news-headlines">
<li>
<article class="story" id="topnews-100000005188322" data-story-id="100000005188322" data-rank="0" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/26/opinion/travel-ban-supreme-court-trump.html">Editorial: The Travel Ban Case</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005188438" data-story-id="100000005188438" data-rank="1" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/health-care-london-fire-travel-ban.html">Collins and Stephens: What Do We Have a Government for?</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005187475" data-story-id="100000005187475" data-rank="2" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/the-gop-rejects-conservatism.html">Brooks: The Bankrupt G.O.P.</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005187997" data-story-id="100000005187997" data-rank="3" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/senate-health-insurance-obamacare-vote-cbo.html">Leonhardt: Vote of Conscience</a> </h2>
</article>
</li>
<li>
<article class="story" id="topnews-100000005156064" data-story-id="100000005156064" data-rank="4" data-collection-renderstyle="HpHeadline">
<h2 class="story-heading"><i class="icon"></i><a href="https://www.nytimes.com/2017/06/27/opinion/facebook-first-amendment-leaks-free-speech.html">Facebook, Free Expression and the Power of a Leak</a> </h2>
</article>
</li>
</ul>
</div>
</div>
</div>
</div> <!-- close split-layout -->
<div class="region opinion-c-col-bottom-region">
<div class="collection">
<style>
.c-column.column section.opinion div time.timestamp{
display:none;
}
</style><style>
.c-column.column section.opinion div p.theme-comments{
display:none;
}
</style></div>
</div> <!-- close opinion-c-col-bottom-region -->
</section> <!-- close opinion -->
<section class="user-subscriptions">
<h2 class="section-heading visually-hidden">User Subscriptions</h2>
<div class="collection insider-collection">
<div id="times-insider-subscription" class="times-insider-subscription hidden">
<ul class="theme-news-headlines">
<li>
<article class="story">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/insider/romance-war-survival-a-correspondent-looks-back-on-his-experience-in-east-africa.html">Romance, War, Survival: A Correspondent Looks Back on His Experience in East Africa</a>
</h2>
</article>
</li>
<li>
<article class="story">
<h2 class="story-heading">
<a href="https://www.nytimes.com/interactive/2017/06/27/insider/copy-edit-this-quiz-7.html">Copy Edit This! Quiz No. 7</a>
</h2>
</article>
</li>
</ul>
<div class="thumb">
<a href="https://www.nytimes.com/section/insider">
<svg class="insider-logo" width="65" height="20" role="img" aria-label="Insider">
<image width="65" height="20" xlink:href="https://a1.nyt.com/assets/homepage/20170626-152643/images/foundation/logos/insider-logo-240x72.svg" src="https://a1.nyt.com/assets/homepage/20170626-152643/images/foundation/logos/insider-logo-240x72.png" alt="Insider" />
</svg>
</a>
</div>
</div><!--close times-insider-subscription -->
</div><!-- close collection -->
<div class="collection">
<div id="times-premier-crossword-subscription" class="times-premier-crossword-subscription hidden">
<div class="layout split-layout">
<div class="column">
<div class="collection insider-collection">
<article class="story">
<h3 class="kicker">
<a href="https://www.nytimes.com/section/insider">Times Insider &raquo;</a>
</h3>
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/insider/romance-war-survival-a-correspondent-looks-back-on-his-experience-in-east-africa.html">Romance, War, Survival: A Correspondent Looks Back on His Experience in East Africa</a>
</h2>
</article>
</div>
</div><!-- close column -->
<div class="column">
<div class="collection crosswords-collection">
<article class="story">
<h3 class="kicker">
<a href="https://www.nytimes.com/crosswords">The Crossword &raquo;</a>
</h3>
<h2 class="story-heading">
<a href="https://www.nytimes.com/crosswords">Play Today&rsquo;s Puzzle </a>
</h2>
<div class="thumb">
<a href="https://www.nytimes.com/crosswords">
<img src="https://static01.nyt.com/images/crosswords/crosswords_30x30.png" alt="" />
</a>
</div>
</article>
</div>
</div>
</div><!--close TimesPremiercrossword -->
</div><!--close times-premier-crossword-subscription -->
</div><!-- close collection -->
<div class="collection">
<div id="crossword-subscription" class="crossword-subscription hidden">
<div class="layout split-layout">
<div class="column">
<div class="collection crosswords-collection">
<article class="story">
<h3 class="kicker">
<a href="https://www.nytimes.com/crosswords">The Crossword &raquo;</a>
</h3>
<h2 class="story-heading">
<a href="https://www.nytimes.com/crosswords">Play Today&rsquo;s Puzzle </a>
</h2>
<div class="thumb">
<a href="https://www.nytimes.com/crosswords">
<img src="https://static01.nyt.com/images/crosswords/crosswords_30x30.png" alt="" />
</a>
</div>
</article>
</div>
</div>
<div class="column">
<div class="collection crosswords-collection">
<article class="story">
<h3 class="kicker">
<a href="http://wordplay.blogs.nytimes.com">Wordplay &raquo;</a>
</h3>
</article>
</div>
</div><!-- close column -->
</div><!-- close layout -->
</div><!-- close crossword-subscription -->
</div><!--close collection -->
</section><!-- close user-subscriptions -->
<div id="HPMiddle" class="ad hpmiddle-ad nocontent robots-nocontent"></div>
<div class="region c-column-middle-span-region">
<div class="collection">
<link rel="stylesheet" type="text/css" href="https://int.nyt.com/apps/portals/assets/portal-6d57ae10010ddcfe80e975e769c6947e.css"/>
<style type="text/css">
/*HIDE WATCHING HEADER*/
.portal-container>header { display: none }
</style>
<div id="nytint-hp-watching">
<div class="portal-container">
<header class="portal-header">
<h4>Watching</h4>
</header>
<div class="portal-posts-frame expanded"></div>
<footer class="portal-footer"></footer>
</div>
</div>
<script type="text/javascript">
require(['foundation/main'], function() {
require(['homepage/main', 'https://int.nyt.com/apps/portals/assets/portal/app-31573ba689b023d9e52c26c6d6aa32ab.js'
], function() {
require(['portal/app'], function(Portal) {
var opts = {
env: 'production_published',
matchHeight: {
match: '.span-ab-layout.layout > .ab-column',
container: '.c-column.column',
maxHeight: 2000
}
}
if (window.location.search.indexOf('portal_variant=watchingNoScroll') !== -1) {
opts.variation = 'simple';
opts.poll = false;
opts.limit = 20;
}
var watching = Portal.create('#nytint-hp-watching', opts);
});
});
});
</script>
<!-- HpPrototype: WatchingEnabled: DO NOT REMOVE -->
</div>
</div><!-- close c-column-middle-span-region -->
<div class="region c-column-above-moth-fixed-region">
</div><!-- close c-column-above-moth-fixed-region -->
<div class="region c-column-above-moth-region">
</div><!-- close c-column-above-moth-region -->
</div><!-- close c-column -->
</div><!-- close span-ab-layout -->
<section id="paid-post-five-pack" class="paid-post-five-pack hidden nocontent robots-nocontent">
<h2 class="section-heading">From Our Advertisers</h2>
<ul class="story-menu">
<li id="PaidPostFivePack1" class="story-menu-item ad"></li>
<li id="PaidPostFivePack2" class="story-menu-item ad"></li>
<li id="PaidPostFivePack3" class="story-menu-item ad"></li>
<li id="PaidPostFivePack4" class="story-menu-item ad"></li>
<li id="PaidPostFivePack5" class="story-menu-item ad"></li>
</ul>
</section>
<div id="HPBreak" class="ad hpbreak-ad nocontent robots-nocontent hidden"></div>
<div id="video-player-region" class="video-player-region region">
<div class="collection">
<div id="video-module-loader" class="loader-container video-section-loader-container">
<div class="loader loader-t-logo-32x32-ecedeb-ffffff"><span class="visually-hidden">Loading...</span></div>
</div>
<section id="video-section"
class="video-section invisible"
data-playlist-id="1194811622188"
data-api-token="cE97ArV7TzqBzkmeRVVhJ8O6GWME2iG_bRvjBTlNb4o."
data-player-id="2640832222001"
data-publisher-id="1749339200">
<header class="section-header">
<h2 class="section-heading"><a class="times-video-link" href="https://www.nytimes.com/video">times<span>video</span></a></h2>
<a href="https://www.nytimes.com/video?src=vidm" class="user-action explore-all-videos-link"> explore all videos &raquo;</a>
</header>
<div class="column a-column">
<article class="story">
<figure class="media video video-player" aria-label="media" role="group">
<span class="visually-hidden">Video Player</span>
<img src="" class="poster" alt="" />
<div class="video-player-container"></div>
<div class="media-action-overlay"></div>
<div class="sharetools video-sharetools"
data-shares="email|,facebook|,twitter|,embed|,show-all|"
data-url=""
data-title=""
data-description=""
data-content-type="video">
</div>
<figcaption class="credit"></figcaption>
</figure>
</article>
</div>
<div class="column b-column">
<div id="video-playlist-container" class="video-playlist-container">
<ul id="video-playlist" class="video-playlist"></ul>
</div>
</div> <!-- end b-column -->
</section>
</div>
</div><!-- close video-player-region -->
<section class="inside-nyt">
<div class="inside-nyt-region region">
<h2 class="section-heading">Inside Nytimes.com</h2>
<div id="inside-nyt-browser" class="inside-nyt-browser">
<div class="navigation-control">
<button class="button previous deactivated">
<div class="arrow arrow-left">
<span class="visually-hidden">Go to the previous story</span>
<div class="arrow-conceal"></div>
</div>
</button>
<button class="button next">
<div class="arrow arrow-right">
<span class="visually-hidden">Go to the next story</span>
<div class="arrow-conceal"></div>
</div>
</button>
</div>
<div class="carousel">
<ol class="menu layout-horizontal theme-story">
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/t-magazine/art">Art</a></h2>
<article class="story theme-summary" data-story-id="100000005178987" data-rank="0" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/22/t-magazine/art/claire-oswalt-watercolor-collage.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/22/t-magazine/art/Oswalt-slide-RQON-copy/Oswalt-slide-RQON-copy-mediumSquare149-v2.jpg" alt="">
</div>
<h2 class="story-heading">The Austin Artist Making Covetable Collages</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/pages/opinion/index.html">Opinion</a></h2>
<article class="story theme-summary no-thumb" data-story-id="100000005189327" data-rank="1" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/opinion/britains-broken-ladder-of-social-mobility.html">
<h2 class="story-heading">Britain’s Broken Ladder of Social Mobility</h2>
<p class="summary">The barriers to entry to the middle class are now so high that even an elite university education is no guarantee of success.</p>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/nyregion">N.Y. / Region</a></h2>
<article class="story theme-summary" data-story-id="100000005178269" data-rank="2" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/22/nyregion/hate-the-beach-these-getaway-options-are-for-you.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/25/nyregion/25GETAWAY1-oak/25GETAWAY1-oak-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">Hate the Beach? Try These Getaway Options</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/fashion">Fashion & Style</a></h2>
<article class="story theme-summary" data-story-id="100000005188079" data-rank="3" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/26/fashion/hats-royal-ascot-race.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/26/fashion/26ASCOT-slide-O6PF/26ASCOT-slide-O6PF-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">The Wacky Hats of Ascot</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/pages/opinion/index.html">Opinion</a></h2>
<article class="story theme-summary no-thumb" data-story-id="100000005189328" data-rank="4" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/26/opinion/senate-bipartisan-health-bill.html">
<h2 class="story-heading">The Senate’s Secretly Bipartisan Health Bill</h2>
<p class="summary">It borrows just as much from Democratic ideas as Obamacare borrowed from Republican ones.</p>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/insider">Times Insider</a></h2>
<article class="story theme-summary" data-story-id="100000005172767" data-rank="5" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/25/insider/revered-and-feared-in-the-book-review-crime-columnist-marilyn-stasio.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/25/insider/25-insider-stasio/25-insider-stasio-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">Revered and Feared in the Book Review</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/magazine">Magazine</a></h2>
<article class="story theme-summary" data-story-id="100000005167317" data-rank="0" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/22/magazine/before-croissants-there-was-kubaneh-a-jewish-yemeni-delight.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/25/magazine/25eat1-copy/25eat1-mediumSquare149-v2.jpg" alt="">
</div>
<h2 class="story-heading">Before Croissants, There Was Kubaneh</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/pages/opinion/index.html">Opinion</a></h2>
<article class="story theme-summary" data-story-id="100000005186713" data-rank="1" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/opinion/trump-obama-cuba.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/28/opinion/28dominguez-inyt/28dominguez-inyt-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">Can Trump Compete With Obama on Cuba?</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/nyregion">N.Y. / Region</a></h2>
<article class="story theme-summary" data-story-id="100000005183001" data-rank="2" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/23/nyregion/coney-island-cyclone-roller-coaster-richard-rodriguez.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/24/nyregion/24CYCLONE-promo/24CYCLONE-promo-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">Coney Island’s Coaster King Takes Another Spin</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/pages/your-money/index.html">Your Money</a></h2>
<article class="story theme-summary" data-story-id="100000005121386" data-rank="3" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/23/business/would-you-trust-tom-selleck-with-your-life-savings.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/25/business/25RETIRING1/25RETIRING1-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">Trusting Tom Selleck With Your Life Savings</h2>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/pages/opinion/index.html">Opinion</a></h2>
<article class="story theme-summary no-thumb" data-story-id="100000005189326" data-rank="4" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/opinion/yemen-houthis.html">
<h2 class="story-heading">Life Beneath Bombs and Behind Blockade</h2>
<p class="summary">The people of Yemen suffer as the United States prepares to sell Saudi Arabia more deadly weapons.</p>
</a>
</article>
</section>
</li>
<li>
<section>
<h2 class="section-heading"><a href="https://www.nytimes.com/section/insider">Times Insider</a></h2>
<article class="story theme-summary" data-story-id="100000005180964" data-rank="5" data-collection-renderstyle="Moth">
<a class="story-link" href="https://www.nytimes.com/2017/06/23/insider/what-were-reading.html">
<div class="wide-thumb">
<img src="https://static01.nyt.com/images/2017/06/23/insider/23WWR-slide-4Y39/23WWR-slide-4Y39-mediumSquare149.jpg" alt="">
</div>
<h2 class="story-heading">What We’re Reading</h2>
</a>
</article>
</section>
</li>
</ol>
</div>
</div>
</div>
</section>
<div id="HPMidLeader" class="ad hpmidleader-ad nocontent robots-nocontent"></div>
<div class="span-ab-layout layout">
<div class="ab-column column">
<hr class="scotch-rule" />
<section class="well">
<div class="region well-region">
<h2 class="section-heading visually-hidden">Sections</h2>
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/world/index.html">World &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005189252" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/world/middleeast/syria-chemical-attack-trump.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/world/28Syria/28Syria-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
U.S. Has Seen Chemical Weapons Activity in Syria, Pentagon Says </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188910" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/world/asia/liu-xiaobo-china-xia-nobel-cancer.html">
Liu Xiaobo Embodied Hope for China’s Democracy. Now He’s Sick. </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005190732" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/world/americas/colombia-farc-rebels-disarmament.html">
‘Goodbye, Weapons!’ FARC Disarmament in Colombia Signals New Era </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/business/index.html">Business Day &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005190701" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/business/media/cnn-retracted-story-on-trump.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/business/28CNN-jp/28CNN-jp-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
A Costly Retraction for CNN and an Opening for Trump </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189438" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/technology/ransomware-hackers.html">
Cyberattack Hits Ukraine Then Spreads Internationally </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189689" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/technology/global-ransomware-hack-what-we-know-and-dont-know.html">
Global Cyberattack: What We Know and Don’t Know </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/opinion/index.html">Opinion &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005187475" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/opinion/the-gop-rejects-conservatism.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/27/opinion/27brooksWeb/27brooksWeb-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
David Brooks: The G.O.P. Rejects Conservatism </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188322" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/opinion/travel-ban-supreme-court-trump.html">
Editorial: The Travel Ban at the Supreme Court </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005187997" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/opinion/senate-health-insurance-obamacare-vote-cbo.html">
David Leonhardt: A Vote of Conscience and Courage </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/us">U.S. &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005191240" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/us/chicago-officers-indicted-laquan-mcdonald-shooting.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/us/28laquan/28laquan-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
3 Chicago Officers Charged With Conspiracy in Laquan McDonald Case </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188690" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/us/trump-travel-ban-refugees-supreme-court.html">
With 3 Words, Supreme Court Opens a World of Uncertainty for Refugees </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005162137" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/us/politics/supreme-court-trump-travel-ban-case.html">
Supreme Court Takes Up Travel Ban Case, and Allows Parts to Go Ahead </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/technology/index.html">Technology &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005189070" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/technology/eu-google-fine.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/world/28Eugoogle2/28Eugoogle2-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Google Fined Record $2.7 Billion in E.U. Antitrust Ruling </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005137732" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/technology/education-partovi-computer-science-coding-apple-microsoft.html">
Education Disrupted: How Silicon Valley Pushed Coding Into American Classrooms </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189438" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/technology/ransomware-hackers.html">
Cyberattack Hits Ukraine Then Spreads Internationally </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/arts/index.html">Arts &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005186793" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/arts/design/first-public-showing-of-monet-rodin-and-maillols-from-gurlitt-trove.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/27GURLITT/27GURLITT-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
First Public Showing of Monet, Rodin and Maillols From Gurlitt Trove </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005187352" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/arts/television/jay-leno-stand-up-after-the-tonight-show.html">
A Word With: Who Needs ‘The Tonight Show’? Jay Leno Still Cares About Tonight’s Show </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005173837" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/movies/baby-driver-review-edgar-wright-ansel-elgort.html">
Review: In ‘Baby Driver,’ It’s Kiss Kiss, Zoom Zoom </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/politics/index.html">Politics &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005192799" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/us/politics/trump-campaign-chiefs-firm-got-17-million-from-pro-russia-party.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/us/28dc-manafort/28dc-manafort-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
Trump Campaign Chief’s Firm Got $17 Million From Pro-Russia Party </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005191658" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/us/politics/health-care-law-repeal-protests.html">
Opponents of Health Law Repeal Vow to Keep Pressure On Over Recess </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005191469" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/us/politics/supreme-court-school-choice-ruling.html">
Supreme Court Ruling Could Shape Future of School Choice </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/fashion">Fashion & Style &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005189194" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/fashion/socks-justin-trudeau-canada.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/world/27OTR1/27OTR1-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
On the Runway: Justin Trudeau’s Sock Diplomacy </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189382" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/fashion/vogue-editor-dame-anna-wintour-queen-elizabeth.html">
Vogue Editor Anna Wintour Is Now Dame Anna </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005165687" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/fashion/samuji-ulla-johnson-instagram-nolita.html">
Critical Shopper: Shopping Without Instagram: It’s Full of Surprises </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/movies">Movies &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005173837" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/movies/baby-driver-review-edgar-wright-ansel-elgort.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/28BABYDRIVE/28BABYDRIVE-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
Review: In ‘Baby Driver,’ It’s Kiss Kiss, Zoom Zoom </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005173838" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/movies/review-okja-bong-joon-ho.html">
Review: In ‘Okja,’ a Girl and Her Pig Take on the Food Industrial Complex </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005190715" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/movies/baby-driver-stunts.html">
How They Pulled Off Those Perfectly Timed Stunts in ‘Baby Driver’ </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/nyregion">New York &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005189647" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/nyregion/subway-train-derails-in-manhattan.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/nyregion/28subway2/28subway2-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Subway Derailment in Manhattan Injures Dozens </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005192718" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/nyregion/how-to-fix-mounting-subway-problems.html">
About New York: How to Fix Mounting Miseries on the Subway? Political Bickering Isn’t the Answer </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188329" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/nyregion/mob-figure-vincent-asaro-pleads-guilty-to-arson-case.html">
Mob Figure Pleads Guilty to Ordering Arson After Road Rage Episode </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/sports/index.html">Sports &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005183768" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/sports/baseball/mets-yoenis-cespedes-asdrubal-cabrera-jose-reyes-friends.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/26/sports/26CESPEDESweb1/26CESPEDESweb1-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
The Mets Brought Them Together, and May Pull Them Apart </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005160418" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/sports/baseball/yankee-stadium-charity.html">
Yankees Charity Neglects Stadium’s Neighbors </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005186245" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/sports/soccer/dennis-crowley-kingston-stockade-fc.html">
A Tech Executive’s Latest Start-Up Has Cleats, Jerseys and Goals </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/theater/index.html">Theater &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005189669" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/theater/jimmy-awards.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/07/02/arts/2JIMMYS1/2JIMMYS1-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Heard of the Jimmys? It’s the Tonys, for Teenagers </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005180860" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/theater/napoli-brooklyn-review.html">
Review: Sisters Plot Their Escapes From ‘Napoli, Brooklyn’ </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005176944" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/theater/say-something-bunny-alison-s-m-kobayashi.html">
The Detective Was a Performance Artist. The Evidence Is Now a Show. </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/science">Science &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005181664" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/26/science/chronic-wasting-disease-deer-elk-prions.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/27/science/27PRION/27PRION-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
Matter: Fire May Be the Only Remedy for a Plague Killing Deer and Elk </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005183505" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/23/science/bright-nights-nocturnal-sun-zonal-waves.html">
Trilobites: Waves Above the Earth May Have Once Caused a ‘Nocturnal Sun’ </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005183641" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/climate/carbon-in-atmosphere-is-rising-even-as-emissions-stabilize.html">
Carbon in Atmosphere Is Rising, Even as Emissions Stabilize </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/obituaries">Obituaries &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005192836" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/arts/michael-nyqvist-dead-actor.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/us/28XP-NYQVIST/28XP-NYQVIST-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Michael Nyqvist, Swedish Actor Who Played Villain in ‘John Wick,’ Dies at 56 </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005192341" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/books/margaux-fragoso-dead-wrote-tiger-tiger.html">
Margaux Fragoso, Memoirist Who Wrote Hauntingly of Sexual Abuse, Dies at 38 </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005191822" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/world/europe/alain-senderens-dead-larchestrate-lucas-carton-restaurants.html">
Alain Senderens, a Chef Who Modernized French Food, Dies at 77 </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/arts/television">Television &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005188531" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/arts/television/pretty-little-liars-finale-how-a-mystery-hid-its-villain.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/television/28LIARS/28LIARS-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Ask a Showrunner: ‘Pretty Little Liars’ Finale: How a Mystery Hid Its Villain </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189273" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/arts/television/review-broadchurch-ends-its-run-as-entertaining-and-moving-as-ever.html">
Review: ‘Broadchurch’ Ends Its Run as Entertaining and Moving as Ever </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005187352" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/arts/television/jay-leno-stand-up-after-the-tonight-show.html">
A Word With: Who Needs ‘The Tonight Show’? Jay Leno Still Cares About Tonight’s Show </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/health/index.html">Health &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005048678" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/26/health/undocumented-immigrants-health-care.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/27/science/27IMMIGRANT1/27IMMIGRANT1-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Sick and Afraid, Some Immigrants Forgo Medical Care </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189302" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/us/politics/republicans-struggle-to-marshal-votes-for-health-care-bill.html">
Vote Delayed as G.O.P. Struggles to Marshal Support for Health Care Bill </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005177973" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/health/the-lab-says-its-cancer-but-sometimes-the-lab-is-wrong.html">
The Lab Says It’s Cancer. But Sometimes the Lab Is Wrong. </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/travel">Travel &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005174376" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/travel/southwest-england-avalon-tintagel-totnes-weird-spiritual.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/07/02/travel/02WEIRDENGLAND/02WEIRDENGLAND-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
The Weird, Mystic Pull of Southwest England </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005180916" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/28/travel/revisiting-hong-kong-after-british-rule-memories.html">
Personal Journeys: Revisiting My Hong Kong, 20 Years After the British Left </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005192837" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/28/travel/five-places-to-shop-in-dublin-ireland-creative-quarter.html">
Foraging: Five Places to Shop in Dublin </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/books">Books &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005188673" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/books/review-golden-hill-francis-spufford.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/arts/28BOOKSPUFFORD1/28BOOKSPUFFORD1-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
Books of The Times: Review: Francis Spufford’s First Novel Is a Swashbuckling Tale </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005187451" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/books/review-edwidge-danticat-art-of-death.html">
Books of The Times: Edwidge Danticat Wrestles With Death, in Life and in Art </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005183829" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/books/review/match-book-literature-about-the-environment.html">
Match Book: Dear Match Book: What Books Best Capture Science and Nature? </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/education">Education &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005178057" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/24/fashion/fear-of-failure.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/25/fashion/25FAILURE/25FAILURE-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
On Campus, Failure Is on the Syllabus </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005137732" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/technology/education-partovi-computer-science-coding-apple-microsoft.html">
Education Disrupted: How Silicon Valley Pushed Coding Into American Classrooms </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005134166" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/25/world/canada/a-battle-over-prayer-in-schools-tests-canadas-multiculturalism.html">
A Battle Over Prayer in Schools Tests Canada’s Multiculturalism </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/dining/index.html">Food &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005178447" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/dining/empellon-review-mexican-midtown.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/dining/28REST-EMPELLON-slide-MQVK/28REST-EMPELLON-slide-MQVK-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Restaurant Review: A Chef’s Mexican Fantasia at Empellón in Midtown </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005178453" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/dining/camping-food-cooking-technology.html">
Upscale Food and Gear Bring Campsite Cooking Out of the Wild </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005178511" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/dining/best-hot-dogs-taste-test.html">
We Taste-Tested 10 Hot Dogs. Here Are the Best. </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/opinion/index.html#sundayreview">Sunday Review &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005142165" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/24/opinion/sunday/obamacare-repeal-health-care-bill.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/02/opinion/02acaBouhabib/02acaBouhabib-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Editorial: If We Lose Our Health Care ... </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005181669" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/24/opinion/sunday/republican-health-care-bill.html">
Ross Douthat: From Worse to Bad on Health Care </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005181667" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/24/opinion/sunday/donald-trump-jon-ossoff-democrats.html">
Maureen Dowd: Donald Skunks the Democrats </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/realestate/index.html">Real Estate &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005155497" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/23/realestate/creating-a-garden-oasis-in-the-city.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/25/realestate/25FIX/25FIX-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
The Fix: Creating a Garden Oasis in the City </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005164305" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/23/realestate/tips-for-creating-a-city-garden.html">
The Fix: Tips for Creating a City Garden </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005155304" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/24/realestate/a-crying-baby-next-door.html">
Ask Real Estate: A Crying Baby Next Door </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/upshot">The Upshot &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005190591" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/interactive/2017/06/27/us/premiums-under-senate-health-plan.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/27/us/premiums-under-senate-health-plan-1498606211255/premiums-under-senate-health-plan-1498606211255-thumbStandard-v5.png" alt="" />
</div>
<h3 class="story-heading">
How Health Costs Would Soar for Older Americans Under the Senate Plan </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188630" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/upshot/a-few-bright-spots-for-republicans-the-rest-could-be-scored-as-grim.html">
The C.B.O. Score: A Few Bright Spots for Republicans. The Rest Can Be Scored as Grim. </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005187910" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/upshot/how-to-discourage-health-insurance-lapses-gop-tries-new-approach.html">
Public Health: Hate the Individual Health Mandate? The G.O.P. Tries a ‘Lockout’ </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/magazine">Magazine &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005187642" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/magazine/can-a-tech-start-up-successfully-educate-children-in-the-developing-world.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/07/02/magazine/02bridge1/02bridge1-thumbStandard-v2.jpg" alt="" />
</div>
<h3 class="story-heading">
Feature: Can a Tech Start-Up Successfully Educate Children in the Developing World? </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005184728" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/magazine/how-donald-trump-misunderstood-the-fbi.html">
Feature: How Donald Trump Misunderstood the F.B.I. </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005184713" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/magazine/why-the-far-right-wants-to-be-the-new-alternative-culture.html">
First Words: Why the Far Right Wants to Be the New ‘Alternative’ Culture </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
<div class="split-3-layout layout theme-base">
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/pages/automobiles/index.html">Automobiles &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005186816" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/26/business/takata-japan-bankruptcy.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/27/business/27TAKATA1/27TAKATA1-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Effects of Takata Bankruptcy to Extend Far and Wide </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005166618" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/22/automobiles/autoreviews/video-review-toyota-prius-prime-hybrid.html">
Driven: Video Review: Doing the Math on Toyota’s Prius Prime Hybrid </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005168762" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/22/automobiles/wheels/driverless-cars-big-data-volkswagen-bmw.html">
Wheels: BMW and Volkswagen Try to Beat Apple and Google at Their Own Game </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column ">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/t-magazine">T Magazine &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005187401" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/t-magazine/food/jeong-kwan-buddhist-nun-cook-manhattan.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/20/t-magazine/food/jeong-kwan-slide-RBPW/jeong-kwan-slide-RBPW-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
The Most Popular Buddhist Nun Cook — in Manhattan </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188251" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/t-magazine/fashion/thom-browne-paris-spring-2018-behind-the-scenes.html">
48 Hours in Paris With Thom Browne </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005188218" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/t-magazine/the-best-of-paris-mens-fashion-week.html">
The Best of Paris Men’s Fashion Week </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
<div class="column last-column">
<section>
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/insider">Times Insider &raquo;</a>
</h2>
<ul>
<li>
<article class="story theme-summary" data-story-id="100000005188288" data-rank="0" data-collection-renderstyle="HpHedThumbWell">
<a class="story-link" href="https://www.nytimes.com/2017/06/27/insider/romance-war-survival-a-correspondent-looks-back-on-his-experience-in-east-africa.html">
<div class="thumb">
<img src="https://static01.nyt.com/images/2017/06/28/insider/27-Insider-Africa-Pic2/27-Insider-Africa-Pic2-thumbStandard.jpg" alt="" />
</div>
<h3 class="story-heading">
Romance, War, Survival: A Correspondent Looks Back on His Experience in East Africa </h3>
</a>
</article>
</li>
<li>
<article class="story" data-story-id="100000005189455" data-rank="1" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/27/insider/what-were-reading.html">
What We’re Reading </a>
</h2>
</article>
</li>
<li>
<article class="story" data-story-id="100000005183295" data-rank="2" data-collection-renderstyle="HpHedThumbWell">
<h2 class="story-heading">
<a href="https://www.nytimes.com/2017/06/26/insider/to-photograph-a-galapagos-tortoise-get-out-of-the-race.html">
How I Got the Shot: To Photograph a Galápagos Tortoise, Get Out of the Race </a>
</h2>
</article>
</li>
</ul>
</section>
</div> <!-- close column -->
</div><!-- close split-3-layout -->
</div>
</section><!-- close well section -->
</div><!-- close ab-column -->
<div class="c-column column">
<section class="real-estate">
<div class="layout split-layout theme-base">
<div class="column">
<div class="region real-estate-left-region">
<div class="collection">
<h2 class="section-heading">
<a href="https://www.nytimes.com/section/realestate">Real Estate &raquo;</a>
</h2>
<article class="story theme-summary" id="topnews-100000005155497" data-story-id="100000005155497" data-rank="0" data-collection-renderstyle="HpSectionSumSmallMedia">
<h3 class="kicker">The Fix </h3>
<h2 class="story-heading"><a href="https://www.nytimes.com/2017/06/23/realestate/creating-a-garden-oasis-in-the-city.html">Creating a Garden Oasis in the City</a></h2>
<p class="byline">By MICHELLE HIGGINS </p>
<div class="thumb">
<a href="https://www.nytimes.com/2017/06/23/realestate/creating-a-garden-oasis-in-the-city.html"><img src="https://static01.nyt.com/images/2017/06/25/realestate/25FIX/25FIX-thumbStandard.jpg" alt=""></a>
</div>
<p class="summary">
You’ve finally got some outdoor space. Now what are you going to do with it? </p>
<p class="theme-comments">
<a href="https://www.nytimes.com/2017/06/23/realestate/creating-a-garden-oasis-in-the-city.html?hp&amp;target=comments#commentsContainer" class="comments-link"><i class="icon sprite-icon comments-icon"></i><span class="comment-count">&nbsp;Comments</span></a>
</p>
</article>
</div>
<div class="collection">
<ul class="theme-module-headlines">
<li><article class="story" data-collection-renderstyle="HpHeadline"><h2 class="story-heading"><a href="http://www.nytimes.com/real-estate/find-a-home">Search for Homes for Sale or Rent</a></h2></article></li>
<li><article class="story" data-collection-renderstyle="HpHeadline"><h2 class="story-heading"><a href="https://www.nytimes.com/real-estate/mortgage-calculator">Mortgage Calculator</a></h2></article></li></ul>
</div>
</div><!-- close real-estate-left-region -->
</div>
<div class="column">
<div class="region real-estate-right-region">
<div class="collection">
<div id="HPmodule-RE2-alternate-content"><div></div>
<div class="collection">
</div></div></div>
<div id="hpmodulere2" class="ad hpmodulere2-ad nocontent robots-nocontent"></div>
</div><!-- close real-estate-right-region -->
</div>
</div>
</section>
<section id="recommendations" class="recommendations">
<div class="tabs-container">
<ul class="tabs">
<li data-type="most-emailed" class="most-emailed-tab"><a href="http://www.nytimes.com/gst/mostemailed.html">Most Emailed</a></li><li data-type="most-viewed" class="most-viewed-tab"><a href="http://www.nytimes.com/gst/mostpopular.html">Most Viewed</a></li><li data-type="trending" class="trending-tab"><a href="http://www.nytimes.com/trending/">Trending</a></li><li data-type="recommended" class="recommended-tab"><a href="http://www.nytimes.com/recommendations">Recommended for you</a></li>
</ul>
</div><!-- end tabs-container -->
<div class="tab-content most-emailed">
<div class="loader"></div>
</div>
<div class="tab-content most-viewed">
<div class="loader"></div>
</div>
<div class="tab-content trending">
<div class="loader"></div>
</div>
<div class="tab-content recommended">
<div class="loader"></div>
</div>
<div id="recommendations-module-loader" class="loader-container">
<div class="loader loader-t-logo-32x32-ecedeb-ffffff"><span class="visually-hidden">Loading...</span></div>
</div>
</section>
<div id="Box1" class="ad box1-ad nocontent robots-nocontent"></div>
<div id="HPBottom1" class="ad hpbottom1-ad nocontent robots-nocontent"></div>
</div><!-- close c-column -->
</div><!-- close span-ab-layout -->
<div id="HPSponLink" class="ad hpsponlink-ad nocontent robots-nocontent"></div>
<div id="Bottom8" class="ad bottom8-ad nocontent robots-nocontent"></div>
<div id="Bottom9" class="ad bottom9-ad nocontent robots-nocontent"></div>
<div class="search-overlay"></div>
</main><!-- close main -->
<section id="site-index" class="site-index">
<header class="section-header">
<p class="user-action"><a href="https://www.nytimes.com/">Go to Home Page &raquo;</a></p>
<h2 class="section-heading">
<span class="visually-hidden">Site Index</span>
<a id="site-index-branding-link" href="https://www.nytimes.com/">
<span class="visually-hidden">The New York Times</span>
</a>
</h2>
<script>window.magnum.writeLogo('small', 'https://a1.nyt.com/assets/homepage/20170626-152643/images/foundation/logos/', '', '', 'standard', 'site-index-branding-link', '');</script>
</header>
<nav id="site-index-navigation" class="site-index-navigation" role="navigation">
<h2 class="visually-hidden">Site Index Navigation</h2>
<div class="split-6-layout layout">
<div class="column">
<h3 class="menu-heading">News</h3>
<ul class="menu">
<li>
<a href="https://www.nytimes.com/pages/world/index.html">World</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/national/index.html">U.S.</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/politics/index.html">Politics</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/nyregion/index.html">N.Y.</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/business/index.html">Business</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/technology/index.html">Tech</a>
</li>
<li>
<a href="https://www.nytimes.com/section/science">Science</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/health/index.html">Health</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/sports/index.html">Sports</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/education/index.html">Education</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/obituaries/index.html">Obituaries</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/todayspaper/index.html">Today's Paper</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/corrections/index.html">Corrections</a>
</li>
</ul>
</div><!-- close column -->
<div class="column">
<h3 class="menu-heading">Opinion</h3>
<ul class="menu">
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html">Today's Opinion</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#columnists">Op-Ed Columnists</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#editorials">Editorials</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#contributing">Contributing Writers</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#op-ed">Op-Ed Contributors</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#opinionator">Opinionator</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#letters">Letters</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#sundayreview">Sunday Review</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/opinion/index.html#takingNote">Taking Note</a>
</li>
<li>
<a href="https://www.nytimes.com/roomfordebate">Room for Debate</a>
</li>
<li>
<a href="http://topics.nytimes.com/top/opinion/thepubliceditor/index.html">Public Editor</a>
</li>
<li>
<a href="https://www.nytimes.com/video/opinion">Video: Opinion</a>
</li>
</ul>
</div><!-- close column -->
<div class="column">
<h3 class="menu-heading">Arts</h3>
<ul class="menu">
<li>
<a href="https://www.nytimes.com/pages/arts/index.html">Today's Arts</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/arts/design/index.html">Art & Design</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/books/index.html">Books</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/arts/dance/index.html">Dance</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/movies/index.html">Movies</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/arts/music/index.html">Music</a>
</li>
<li>
<a href="https://www.nytimes.com/events/">N.Y.C. Events Guide</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/arts/television/index.html">Television</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/theater/index.html">Theater</a>
</li>
<li>
<a href="https://www.nytimes.com/video/arts">Video: Arts</a>
</li>
</ul>
</div><!-- close column -->
<div class="column">
<h3 class="menu-heading">Living</h3>
<ul class="menu">
<li>
<a href="https://www.nytimes.com/pages/automobiles/index.html">Automobiles</a>
</li>
<li>
<a href="https://www.nytimes.com/crosswords/">Crossword</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/dining/index.html">Food</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/education/index.html">Education</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/fashion/index.html">Fashion & Style</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/health/index.html">Health</a>
</li>
<li>
<a href="https://www.nytimes.com/section/jobs">Jobs</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/magazine/index.html">Magazine</a>
</li>
<li>
<a href="https://www.nytimes.com/events/">N.Y.C. Events Guide</a>
</li>
<li>
<a href="https://www.nytimes.com/section/realestate">Real Estate</a>
</li>
<li>
<a href="https://www.nytimes.com/section/t-magazine">T Magazine</a>
</li>
<li>
<a href="https://www.nytimes.com/section/travel">Travel</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/fashion/weddings/index.html">Weddings & Celebrations</a>
</li>
</ul>
</div><!-- close column -->
<div class="column">
<h3 class="menu-heading">Listings & More</h3>
<ul class="menu">
<li>
<a href="https://www.nytimes.com/ref/classifieds/">Classifieds</a>
</li>
<li>
<a href="https://www.nytimes.com/marketing/tools-and-services/">Tools & Services</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/topics/">Times Topics</a>
</li>
<li>
<a href="http://topics.nytimes.com/top/opinion/thepubliceditor/index.html">Public Editor</a>
</li>
<li>
<a href="https://www.nytimes.com/events/">N.Y.C. Events Guide</a>
</li>
<li>
<a href="https://www.nytimes.com/interactive/blogs/directory.html">Blogs</a>
</li>
<li>
<a href="https://www.nytimes.com/pages/multimedia/index.html">Multimedia</a>
</li>
<li>
<a href="https://lens.blogs.nytimes.com/">Photography</a>
</li>
<li>
<a href="https://www.nytimes.com/video">Video</a>
</li>
<li>
<a href="https://www.nytimes.com/store/?&t=qry542&utm_source=nytimes&utm_medium=HPB&utm_content=hp_browsetree&utm_campaign=NYT-HP&module=SectionsNav&action=click&region=TopBar&version=BrowseTree&contentCollection=NYT%20Store&contentPlacement=2&pgtype=Homepage">NYT Store</a>
</li>
<li>
<a href="https://www.nytimes.com/times-journeys/?utm_source=nytimes&utm_medium=HPLink&utm_content=hp_browsetree&utm_campaign=NYT-HP">Times Journeys</a>
</li>
<li>
<a href="https://www.nytimes.com/seeallnav">Subscribe</a>
</li>
<li>
<a href="https://www.nytimes.com/membercenter">Manage My Account</a>
</li>
</ul>
</div><!-- close column -->
<div class="column last-column">
<h3 class="menu-heading">Subscribe</h3>
<ul class="menu primary-menu">
<li class="menu-label">Subscribe</li>
<li class="home-delivery">
<i class="icon sprite-icon"></i>
<a class="nyt-home-delivery" href="https://www.nytimes.com/hdleftnav">Home Delivery</a>
</li>
<li class="digital-subscriptions">
<i class="icon sprite-icon"></i>
<a class="digital-subscription" href="https://www.nytimes.com/digitalleftnav">Digital Subscriptions</a>
</li>
<li class="nyt-crossword last-item">
<i class="icon sprite-icon"></i>
<a id="nyt-crossword" href="https://www.nytimes.com/crosswords/index.html">Crossword</a>
</li>
</ul>
<ul class="menu secondary-menu">
<li class="email-newsletters">
<a href="https://www.nytimes.com/marketing/newsletters">Email Newsletters</a>
</li>
<li>
<a href="https://myaccount.nytimes.com/mem/tnt.html">Alerts</a>
</li>
<li class="gift-subscription">
<a href="https://www.nytimes.com/giftleftnav">Gift Subscriptions</a>
</li>
<li>
<a href="https://www.nytimes.com/corporateleftnav">Corporate Subscriptions</a>
</li>
<li>
<a href="https://www.nytimes.com/educationleftnav">Education Rate</a>
</li>
</ul>
<ul class="menu secondary-menu">
<li>
<a href="https://www.nytimes.com/services/mobile/index.html">Mobile Applications</a>
</li>
<li>
<a href="http://eedition.nytimes.com/cgi-bin/signup.cgi?cc=37FYY">Replica Edition</a>
</li>
</ul>
</div><!-- close column -->
</div><!-- close split-6-layout -->
</nav><!-- close nav -->
</section><!-- close site-index -->
<footer id="page-footer" class="page-footer" role="contentinfo">
<nav>
<h2 class="visually-hidden">Site Information Navigation</h2>
<ul>
<li>
<a href="https://www.nytimes.com/content/help/rights/copyright/copyright-notice.html" itemprop="copyrightNotice">
&copy; <span itemprop="copyrightYear">2017</span><span itemprop="copyrightHolder provider sourceOrganization" itemscope itemtype="http://schema.org/Organization" itemid="http://www.nytimes.com"><span itemprop="name"> The New York Times Company</span><meta itemprop="tickerSymbol" content="NYSE NYT"/></span>
</a>
</li>
<li class="wide-viewport-item"><a href="https://www.nytimes.com/ref/membercenter/help/infoservdirectory.html">Contact Us</a></li>
<li class="wide-viewport-item"><a href="http://www.nytco.com/careers">Work With Us</a></li>
<li class="wide-viewport-item"><a href="http://nytmediakit.com/">Advertise</a></li>
<li class="wide-viewport-item"><a href="https://www.nytimes.com/content/help/rights/privacy/policy/privacy-policy.html#pp">Your Ad Choices</a></li>
<li><a href="https://www.nytimes.com/privacy">Privacy</a></li>
<li><a href="https://www.nytimes.com/ref/membercenter/help/agree.html" itemprop="usageTerms">Terms of Service</a></li>
<li class="wide-viewport-item last-item"><a href="https://www.nytimes.com/content/help/rights/sale/terms-of-sale.html">Terms of Sale</a></li>
</ul>
</nav>
<nav class="last-nav">
<h2 class="visually-hidden">Site Information Navigation</h2>
<ul>
<li><a href="http://spiderbites.nytimes.com">Site Map</a></li>
<li><a href="https://www.nytimes.com/membercenter/sitehelp.html">Help</a></li>
<li><a href="https://myaccount.nytimes.com/membercenter/feedback.html">Site Feedback</a></li>
<li class="wide-viewport-item last-item"><a href="https://www.nytimes.com/subscriptions/Multiproduct/lp5558.html?campaignId=37WXW">Subscriptions</a></li>
</ul>
</nav>
<div id="mobile-banner" class="mobile-banner hidden">
<a class="banner-message" href="https://mobile.nytimes.com/">View Mobile Version</a>
</div>
<div id="dfp-perf-test" class="ad hidden"></div>
</footer>
</div><!-- close page -->
</div><!-- close shell -->
<script>
require(['foundation/main'], function () {
require(['homepage/main']);
require(['jquery/nyt', 'foundation/views/page-manager'], function ($, pageManager) {
if (window.location.search.indexOf('disable_tagx') > 0) {
return;
}
$(document).ready(function () {
require(['https://a1.nyt.com/analytics/tagx-simple.min.js'], function () {
pageManager.trackingFireEventQueue();
});
});
});
});
</script>
<!--esi
<esi:include src="/appconfig/https/show-modal.js" />
-->
<div id="Inv1" class="ad inv1-ad hidden"></div>
<div id="Inv2" class="ad inv2-ad hidden"></div>
<div id="Inv3" class="ad inv3-ad hidden"></div>
<div id="ab1" class="ad ab1-ad hidden"></div>
<div id="ab2" class="ad ab2-ad hidden"></div>
<div id="ab3" class="ad ab3-ad hidden"></div>
<div id="prop1" class="ad prop1-ad hidden"></div>
<div id="prop2" class="ad prop2-ad hidden"></div>
<div id="Anchor" class="ad anchor-ad hidden"></div>
<div id="ADX_CLIENTSIDE" class="ad adx-clientside-ad hidden"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment