shell bypass 403
<!-- Child template used for displaying the facts row in site specific position -->
<DataTemplate xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tm="using:SearchUI.TemplateManager"
x:Key="Web.FactsList_8_1_RP">
<StackPanel>
<!-- Facts are rendered as a list of items that get bound to textblocks inside InlineUIContainer
so that whole facts will be dropped it they dont get enough space to render. Space is reserved
here for a maximum of 6 facts which is also configured on the server side -->
<RichTextBlock MaxLines="2"
TextWrapping="Wrap"
IsTextSelectionEnabled="false">
<Paragraph>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[0].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[1].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[2].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[3].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[4].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
<InlineUIContainer>
<TextBlock tm:RichText.Text="{Binding Extended:factItem[5].System_Search_Contents}"
Style="{CustomResource Resources.Shared.FactStyle}" />
</InlineUIContainer>
</Paragraph>
</RichTextBlock>
</StackPanel>
</DataTemplate>