\n \nComprising a V-neck tee-shirt dress and brand new edition of Iisli's breakthrough blazer -- a strong shoulder and tailored construction in a soft tee-shirt feel - the New Merino Suit showcases both the remarkable advances in Merino wool and Iisli's own innovative thinking when it comes to knits. Iisli designer Sisi Li has pioneered a paradigm shift in knits, translating tailored shapes into clothing of remarkable ease and elegance. And according to Li, Merino wool is the perfect medium for her experiments. \n \n\"Our New Merino Suit challenges the preconceptions people have about Merino,\" she notes. \"With AWI's help, we've sourced Merino that makes a suit lighter and more fluid than any garment you could create from any other natural fiber. And the lightweight Australian Merino that we're using in the blazer not only feels incredibly luxurious, it also holds the tailoring and the design details without sacrificing the freedom of movement that Iisli is all about.\" \n \nSaks Fifth Avenue's VIP shoppers will be the first to experience the New Merino Suit. As part of Iisli's weeklong event at the flagship Saks Fifth Avenue in Midtown Manhattan, the brand will host a party open to the public on October 16, and a handful of Saks-selected VIPs will each get to take home a New Merino Suit as her special gift for attending. \n \n\"This gift is one of the most exciting aspects of our partnership with AWI,\" notes Li. \"I think the best way to understand Iisli is by experiencing the garments in our line. The moment a woman puts on our safari jacket, she gets it. We're introducing people to the Iisli lifestyle get up and go and look great.\" \n \nIisli's Saks Fifth Avenue event runs from Monday October 13 through Sunday October 19. \n \nABOUT IISLI: Founded in 2003 by the husband-and-wife team of Nelson and Sisi Li, IISLI has emerged as one the upper contemporary market's breakthrough brands, more than tripling in size since its launch. IISLI's easy, luxurious clothes are carried at stores including Bergdorf Goodman, Bloomingdales, Saks Fifth Avenue and Nordstrom, and the brand makes its freestanding retail debut this fall with the opening of its guerrilla shop at 25 Bond Street. \n \nABOUT AWI: Australia still stands as one of the world's largest producers of wool. The Australian Merino grazes a quarter of the Australian landscape and produces half a billion kilograms of fleece worth around $2.5 billion a year. AWI is a non-for-profit company funded by more than 30,000 wool-growers, producing one of the world's most luxurious and dynamic natural fibers. AWI looks forward to the global revival of the Woolmark brand and the future of Australian Merino wool. \n \n "}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
NEW YORK, New York, October 7, 2008 - IISLI is excited to announce the launch of its New Merino Suit. Developed in collaboration with Australian Wool Innovation, Ltd. (AWI), Iisli updates the'suit' uniform with a timeless dress-and-blazer for the modern, on-the-move woman and will make its official debut at a special event at Saks Fifth Avenue in October.
Comprising a V-neck tee-shirt dress and brand new edition of Iisli's breakthrough blazer -- a strong shoulder and tailored construction in a soft tee-shirt feel - the New Merino Suit showcases both the remarkable advances in Merino wool and Iisli's own innovative thinking when it comes to knits. Iisli designer Sisi Li has pioneered a paradigm shift in knits, translating tailored shapes into clothing of remarkable ease and elegance. And according to Li, Merino wool is the perfect medium for her experiments.
"Our New Merino Suit challenges the preconceptions people have about Merino," she notes. "With AWI's help, we've sourced Merino that makes a suit lighter and more fluid than any garment you could create from any other natural fiber. And the lightweight Australian Merino that we're using in the blazer not only feels incredibly luxurious, it also holds the tailoring and the design details without sacrificing the freedom of movement that Iisli is all about."
Saks Fifth Avenue's VIP shoppers will be the first to experience the New Merino Suit. As part of Iisli's weeklong event at the flagship Saks Fifth Avenue in Midtown Manhattan, the brand will host a party open to the public on October 16, and a handful of Saks-selected VIPs will each get to take home a New Merino Suit as her special gift for attending.
"This gift is one of the most exciting aspects of our partnership with AWI," notes Li. "I think the best way to understand Iisli is by experiencing the garments in our line. The moment a woman puts on our safari jacket, she gets it. We're introducing people to the Iisli lifestyle get up and go and look great."
Iisli's Saks Fifth Avenue event runs from Monday October 13 through Sunday October 19.
ABOUT IISLI: Founded in 2003 by the husband-and-wife team of Nelson and Sisi Li, IISLI has emerged as one the upper contemporary market's breakthrough brands, more than tripling in size since its launch. IISLI's easy, luxurious clothes are carried at stores including Bergdorf Goodman, Bloomingdales, Saks Fifth Avenue and Nordstrom, and the brand makes its freestanding retail debut this fall with the opening of its guerrilla shop at 25 Bond Street.
ABOUT AWI: Australia still stands as one of the world's largest producers of wool. The Australian Merino grazes a quarter of the Australian landscape and produces half a billion kilograms of fleece worth around $2.5 billion a year. AWI is a non-for-profit company funded by more than 30,000 wool-growers, producing one of the world's most luxurious and dynamic natural fibers. AWI looks forward to the global revival of the Woolmark brand and the future of Australian Merino wool.