├── .github ├── ISSUE_TEMPLATE │ ├── 1_bug.yml │ ├── 2_optimize.yml │ └── 4_new.yml └── workflows │ └── build-and-sync.yml ├── .gitignore ├── Custom.uhmlx ├── README.md ├── components └── SingleCard.uhmlx ├── data ├── Cards.json └── StaticStrings.xaml ├── output ├── Custom.AST.json ├── Custom.xaml └── Custom.xaml.ini └── styles ├── Border.Quote.uhmls ├── FlowDocument.uhmls ├── FlowDocumentScrollViewer.uhmls ├── Image.InnerImage.uhmls ├── List.uhmls ├── ListItem.uhmls ├── Paragraph.H1.uhmls ├── Paragraph.H2.uhmls ├── Paragraph.H3.uhmls ├── Paragraph.H4.uhmls ├── Paragraph.H5.uhmls ├── Paragraph.uhmls ├── Run.H1.uhmls ├── StackPanel.ContentStack.uhmls ├── TextBlock.imgTitle.uhmls ├── TextBlock.uhmls ├── TextBox.InlineCode.uhmls ├── local-MyCard.Card.uhmls ├── local-MyIconTextButton.ClipboardButton.uhmls ├── local-MyIconTextButton.GithubRepoButton.uhmls ├── local-MyIconTextButton.IssueButton.uhmls └── local-MyIconTextButton.LoadingButton.uhmls /.github/ISSUE_TEMPLATE/1_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/.github/ISSUE_TEMPLATE/1_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_optimize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/.github/ISSUE_TEMPLATE/2_optimize.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4_new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/.github/ISSUE_TEMPLATE/4_new.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/.github/workflows/build-and-sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # 构建文件 2 | output/ -------------------------------------------------------------------------------- /Custom.uhmlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/Custom.uhmlx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/README.md -------------------------------------------------------------------------------- /components/SingleCard.uhmlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/components/SingleCard.uhmlx -------------------------------------------------------------------------------- /data/Cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/data/Cards.json -------------------------------------------------------------------------------- /data/StaticStrings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/data/StaticStrings.xaml -------------------------------------------------------------------------------- /output/Custom.AST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/output/Custom.AST.json -------------------------------------------------------------------------------- /output/Custom.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/output/Custom.xaml -------------------------------------------------------------------------------- /output/Custom.xaml.ini: -------------------------------------------------------------------------------- 1 | klv4tli26fp -------------------------------------------------------------------------------- /styles/Border.Quote.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Border.Quote.uhmls -------------------------------------------------------------------------------- /styles/FlowDocument.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/FlowDocument.uhmls -------------------------------------------------------------------------------- /styles/FlowDocumentScrollViewer.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/FlowDocumentScrollViewer.uhmls -------------------------------------------------------------------------------- /styles/Image.InnerImage.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Image.InnerImage.uhmls -------------------------------------------------------------------------------- /styles/List.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/List.uhmls -------------------------------------------------------------------------------- /styles/ListItem.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/ListItem.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.H1.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.H1.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.H2.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.H2.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.H3.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.H3.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.H4.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.H4.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.H5.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.H5.uhmls -------------------------------------------------------------------------------- /styles/Paragraph.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Paragraph.uhmls -------------------------------------------------------------------------------- /styles/Run.H1.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/Run.H1.uhmls -------------------------------------------------------------------------------- /styles/StackPanel.ContentStack.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/StackPanel.ContentStack.uhmls -------------------------------------------------------------------------------- /styles/TextBlock.imgTitle.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/TextBlock.imgTitle.uhmls -------------------------------------------------------------------------------- /styles/TextBlock.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/TextBlock.uhmls -------------------------------------------------------------------------------- /styles/TextBox.InlineCode.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/TextBox.InlineCode.uhmls -------------------------------------------------------------------------------- /styles/local-MyCard.Card.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/local-MyCard.Card.uhmls -------------------------------------------------------------------------------- /styles/local-MyIconTextButton.ClipboardButton.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/local-MyIconTextButton.ClipboardButton.uhmls -------------------------------------------------------------------------------- /styles/local-MyIconTextButton.GithubRepoButton.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/local-MyIconTextButton.GithubRepoButton.uhmls -------------------------------------------------------------------------------- /styles/local-MyIconTextButton.IssueButton.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/local-MyIconTextButton.IssueButton.uhmls -------------------------------------------------------------------------------- /styles/local-MyIconTextButton.LoadingButton.uhmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomePlaza-Of-PCL2/Homepage.Market/HEAD/styles/local-MyIconTextButton.LoadingButton.uhmls --------------------------------------------------------------------------------