27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
---
|
|
import Base from '../layouts/Base.astro';
|
|
const title = "Articles for .NET developers - ComponentOwl";
|
|
const description = "Better ListView by Component Owl is a .NET WinForms control designed to replace the standard list view control included with C#/VB.net.";
|
|
const keywords = "list view, listview, list view control, list view component, .net list view, list view replacement, list view alternative, improved list view, enhanced list view";
|
|
const rawContent = `<div class="d-content-wrap">
|
|
<div class="subpage resources-content">
|
|
|
|
<div class="section-heading">Articles for .NET developers</div>
|
|
|
|
<div class="featured-articles">
|
|
|
|
<h2><a href="articles/visual-studio-toolbox-control-integration.html">Visual Studio Toolbox Control Integration</a></h2>
|
|
<div class="post-info">Published on Tuesday, 22 April 2014</div>
|
|
|
|
</div>
|
|
|
|
<div class="articles">
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
---
|
|
<Base title={title} description={description} keywords={keywords}>
|
|
<Fragment set:html={rawContent} />
|
|
</Base>
|